starter/lua/plugins/mason.lua
2026-06-22 15:01:38 -04:00

26 lines
419 B
Lua

-- ~/.config/nvim/lua/plugins/mason.lua
return {
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
pyright = {},
lua_ls = {},
yamlls = {},
bashls = {},
},
},
{
"williamboman/mason.nvim",
opts = {
ensure_installed = {
"pyright",
"lua_ls",
"yamlls",
"bashls",
},
},
}