Files
astronvim_config/plugins/mason-lspconfig.lua
Ismo Vuorinen e3fa6772f0 Config updates
2023-02-16 16:19:49 +02:00

34 lines
568 B
Lua

-- use mason-lspconfig to configure LSP installations
return {
automatic_installation = true,
ensure_installed = {
"ansiblels",
"bashls",
"clangd",
"codeqlls",
"cssls",
"diagnosticls",
"docker_compose_language_service",
"dockerls",
"emmet_ls",
"eslint",
"graphql",
"html",
"intelephense",
"jsonls",
"lua_ls",
"marksman",
"phpactor",
"psalm",
"pyright",
"spectral",
"stylelint_lsp",
"sqls",
"tailwindcss",
"terraformls",
"tsserver",
"vuels",
"yamlls"
}
}