Update Mason and mason-lspconfig to use typos_lsp also add gitlint to ensure_install
20 lines
349 B
Lua
20 lines
349 B
Lua
return {
|
|
"williamboman/mason-lspconfig.nvim",
|
|
config = function(plugin, opts)
|
|
opts["ensure_installed"] = {
|
|
"bashls",
|
|
"cssls",
|
|
"dockerls",
|
|
"emmet_ls",
|
|
"html",
|
|
"pyright",
|
|
"rust_analyzer",
|
|
"sqlls",
|
|
"lua_ls",
|
|
"tsserver",
|
|
"yamlls",
|
|
"gitlint",
|
|
}
|
|
require("plugins.configs.mason-lspconfig")(plugin, opts)
|
|
end,
|
|
}
|