diff options
Diffstat (limited to 'nvim/lua/configs/lspconfig.lua')
| -rw-r--r-- | nvim/lua/configs/lspconfig.lua | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/nvim/lua/configs/lspconfig.lua b/nvim/lua/configs/lspconfig.lua deleted file mode 100644 index d89bd10..0000000 --- a/nvim/lua/configs/lspconfig.lua +++ /dev/null @@ -1,26 +0,0 @@ -require("nvchad.configs.lspconfig").defaults() - --- NOTE: DO NOT USE MASON TO INSTALL LSPs, THEY CONFLICT WITH THESE, IF YOU --- HAVE ANY INSTALLED, REMOVE THEM -local servers = { - "html", "cssls", "rust_analyzer", "zls", - "ts_ls", "pylsp" -} -vim.lsp.enable(servers) - -vim.lsp.config("clangd", { - cmd = { - "clangd", - "--query-driver=/run/current-system/sw/bin/arm-none-eabi-gcc", - }, -}) - - - -vim.lsp.config("gdscript", { - cmd = { "ncat", "localhost", "6005" }, - filetypes = { "gd", "gdscript", "gdscript3" }, -}) - -vim.lsp.enable("clangd") -vim.lsp.enable("gdscript") |
