From 53539af0fa16746424020325a13c6e3e4a8d343d Mon Sep 17 00:00:00 2001 From: Joshua Finch Date: Tue, 30 Jan 2024 11:44:22 -0600 Subject: [PATCH] Changes to the mason config to remove ui customization and removing the gdscript setup for now. --- init.lua | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/init.lua b/init.lua index ee73305..282a30b 100644 --- a/init.lua +++ b/init.lua @@ -329,21 +329,14 @@ end -- Module loading if mason and mason_lspconfig and nvim_lsp then - mason.setup { - ui = { - icons = { - package_installed = "✓", - package_pending = "➜", - package_uninstalled = "✗" - } - } - } + mason.setup {} mason_lspconfig.setup { automatic_installation = true, } mason_lspconfig.setup_handlers { + -- Default LSP handler function(server_name) nvim_lsp[server_name].setup { capabilities = capabilities, @@ -389,7 +382,7 @@ if mason and mason_lspconfig and nvim_lsp then } -- Manually adding gdscript as Mason doesn't handle this anymore - nvim_lsp.gdscript.setup {} + -- nvim_lsp.gdscript.setup {} end if telescope and telescope_builtin then