Fix lsp configuration

This commit is contained in:
2026-06-30 19:38:07 +05:30
parent a0e8d4b2e1
commit 69bd30d1fc
+3 -1
View File
@@ -337,7 +337,8 @@ lazy.setup({
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
event = { "BufReadPre", "BufNewFile" }, event = { "BufReadPre", "BufNewFile" },
config = function() config = function()
V.lsp.enable('lua_ls', 'powershell_es') V.lsp.config('lua_ls', {})
V.lsp.enable('lua_ls')
-- The default borders from nvim-lspconfig, which is what is used to configure the lsp servers -- The default borders from nvim-lspconfig, which is what is used to configure the lsp servers
-- in this configuration, are not visible. This is a workaround to update the borders key in the -- in this configuration, are not visible. This is a workaround to update the borders key in the
@@ -358,6 +359,7 @@ lazy.setup({
} }
-- RUST -- -- RUST --
V.lsp.config('rust_analyzer', {})
V.lsp.enable('rust_analyzer') V.lsp.enable('rust_analyzer')
-- C# -- -- C# --