From 69bd30d1fc6909da5f813471a20d049819254cab Mon Sep 17 00:00:00 2001 From: cool-mist Date: Tue, 30 Jun 2026 19:38:07 +0530 Subject: [PATCH] Fix lsp configuration --- init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 9dba89b..140ba14 100644 --- a/init.lua +++ b/init.lua @@ -337,7 +337,8 @@ lazy.setup({ "neovim/nvim-lspconfig", event = { "BufReadPre", "BufNewFile" }, 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 -- in this configuration, are not visible. This is a workaround to update the borders key in the @@ -358,6 +359,7 @@ lazy.setup({ } -- RUST -- + V.lsp.config('rust_analyzer', {}) V.lsp.enable('rust_analyzer') -- C# --