feat(nvim): typst; tidy language specific configurations

This commit is contained in:
2025-11-22 22:03:21 +08:00
parent 9273df1ab8
commit 4ae4f3bb2b
12 changed files with 66 additions and 147 deletions

View File

@@ -4,9 +4,6 @@ vim.api.nvim_create_autocmd("BufWritePre", {
desc = "auto format Go files",
callback = function()
vim.lsp.buf.format()
-- vim.fn.system("go fmt " .. vim.fn.expand("%:p"))
-- vim.fn.system("goimports -w " .. vim.fn.expand("%:p"))
-- vim.cmd("edit")
end,
group = "Go",
})