mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
14 lines
227 B
Lua
14 lines
227 B
Lua
-- ~/.config/nvim/lua/plugins/mason.lua
|
|
return {
|
|
{
|
|
"mason-org/mason-lspconfig.nvim",
|
|
opts = {
|
|
ensure_installed = {
|
|
"lua_ls",
|
|
"pyright",
|
|
"yamlls",
|
|
"bashls",
|
|
},
|
|
},
|
|
},
|
|
}
|