mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
31 lines
564 B
Lua
31 lines
564 B
Lua
return {
|
|
{
|
|
-- f.k.a. "williamboman/mason-lspconfig.nvim",
|
|
"mason-org/mason-lspconfig.nvim",
|
|
opts = {
|
|
PATH = "append",
|
|
ensure_installed = {
|
|
"marksman",
|
|
"yamlls",
|
|
"jsonls",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
-- f.k.a. "williamboman/mason.nvim",
|
|
"mason-org/mason.nvim",
|
|
opts = {
|
|
ensure_installed = {
|
|
"oxlint",
|
|
"nil",
|
|
"markdownlint",
|
|
"fixjson",
|
|
"prettierd",
|
|
"nixfmt",
|
|
"yamlfix",
|
|
"jinja-lsp",
|
|
"django-template-lsp",
|
|
},
|
|
},
|
|
},
|
|
}
|