mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 20:41:04 +00:00
37 lines
697 B
Lua
37 lines
697 B
Lua
return {
|
|
{
|
|
-- f.k.a. "williamboman/mason-lspconfig.nvim",
|
|
"mason-org/mason-lspconfig.nvim",
|
|
opts = {
|
|
PATH = "append",
|
|
ensure_installed = {
|
|
"marksman",
|
|
"yamlls",
|
|
"jsonls",
|
|
-- "pylsp",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
-- f.k.a. "williamboman/mason.nvim",
|
|
"mason-org/mason.nvim",
|
|
opts = {
|
|
PATH = "append",
|
|
ensure_installed = {
|
|
"oxlint",
|
|
"nil",
|
|
"markdownlint",
|
|
"fixjson",
|
|
"prettierd",
|
|
"nixfmt",
|
|
"yamlfix",
|
|
"mypy",
|
|
"jinja-lsp",
|
|
"django-template-lsp",
|
|
"tailwindcss-language-server",
|
|
"djlint",
|
|
"typos",
|
|
},
|
|
},
|
|
},
|
|
}
|