mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
43 lines
814 B
Lua
43 lines
814 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",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
vtsls = {
|
|
preferences = {
|
|
-- importModuleSpecifier = "relative",
|
|
importModuleSpecifier = "non-relative",
|
|
importModuleSpecifierEnding = "minimal",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|