emacs, neovim & fish

This commit is contained in:
speckitor
2026-06-11 19:41:26 +07:00
parent 216c9fdec4
commit 6d3175f2cf
11 changed files with 157 additions and 172 deletions
+15
View File
@@ -0,0 +1,15 @@
vim.lsp.enable("clangd")
vim.lsp.config("clangd", {
cmd = { "clangd", "--header-insertion=never"}
})
vim.lsp.enable("gopls")
vim.lsp.enable("zls")
vim.lsp.enable("c3lsp")
vim.lsp.config("c3lsp", {
cmd = {
"c3lsp",
"--diagnostics-delay", "1000",
}
})