This commit is contained in:
Jose G 2026-06-22 14:52:29 -04:00
parent 6b73ec0e98
commit 75eee2acfc

View file

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