starter/lua/plugins/mason.lua
2025-08-09 16:07:46 -04:00

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",
},
},
},
},
},
}