This commit is contained in:
Jose G 2026-06-22 14:35:34 -04:00
parent fe92065764
commit 6b73ec0e98

View file

@ -1,14 +1,14 @@
-- ~/.config/nvim/lua/plugins/mason.lua
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
lua_ls = {},
pyright = {},
yamlls = {},
bashls = {},
},
},
"mason-org/mason-lspconfig.nvim",
opts = function(_, opts)
opts.ensure_installed = {
"lua_ls",
"pyright",
"yamlls",
"bashls",
}
end,
},
}