From 84414bc2d935094c867092b3a351dc0fb7309ab4 Mon Sep 17 00:00:00 2001 From: Segcolt <9hmbzr275@mozmail.com> Date: Wed, 25 Sep 2024 11:14:47 -0300 Subject: [PATCH] Fix the names of the lsp servers --- lua/plugins/mason.lua | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lua/plugins/mason.lua b/lua/plugins/mason.lua index 169a78e..d8ddf36 100644 --- a/lua/plugins/mason.lua +++ b/lua/plugins/mason.lua @@ -8,15 +8,12 @@ return { -- add more things to the ensure_installed table protecting against community packs modifying it opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "lua_ls", - "bash_language_server", + "bashls", "pylsp", - "cmake-language-server", + "cmake", "mesonlsp", - "vim-language-server", "vimls", - "asm-lsp", - "css-lsp", - "glow", + "cssls", "marksman", }) end,