From 9ca65a5cf83363636f2110c68a4798ded8ba66ff Mon Sep 17 00:00:00 2001 From: Juanito <11276687+Juanito87@users.noreply.github.com> Date: Thu, 18 Sep 2025 16:31:06 -0300 Subject: [PATCH] Update lsp.lua Fix typo --- lua/plugins_config/lsp.lua | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lua/plugins_config/lsp.lua b/lua/plugins_config/lsp.lua index d4ba2eee..c24b0f49 100644 --- a/lua/plugins_config/lsp.lua +++ b/lua/plugins_config/lsp.lua @@ -225,7 +225,7 @@ return { gopls = {}, pyright = {}, rust_analyzer = {}, - tsserve = {}, + tsserver = {}, -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- Some languages (like typescript) have entire language plugins that can be useful: -- https://github.com/pmizio/typescript-tools.nvim @@ -268,13 +268,6 @@ return { ensure_installed = ensure_installed, auto_update = false, } - local null_ls = require("null-ls") - null_ls.setup({ - sources = { - null_ls.builtins.formatting.stylua, - null_ls.builtins.formatting.terraform_fmt, - }, - }) require('mason-lspconfig').setup { ensure_installed = {}, -- explicitly set to an empty table (Kickstart populates installs via mason-tool-installer)