feat: first commit

This commit is contained in:
2024-12-12 14:07:56 +04:00
parent 41c5b46733
commit 5604b29cdc
29 changed files with 890 additions and 157 deletions

View File

@@ -0,0 +1,13 @@
vim.api.nvim_create_autocmd(
{
"BufNewFile",
"BufRead",
},
{
pattern = "*.typ",
callback = function()
local buf = vim.api.nvim_get_current_buf()
vim.api.nvim_buf_set_option(buf, "filetype", "typst")
end
}
)