summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/lsp
diff options
context:
space:
mode:
Diffstat (limited to 'lua/ben/plugins/lsp')
-rw-r--r--lua/ben/plugins/lsp/mason.lua35
1 files changed, 1 insertions, 34 deletions
diff --git a/lua/ben/plugins/lsp/mason.lua b/lua/ben/plugins/lsp/mason.lua
index 121509d..e352a6e 100644
--- a/lua/ben/plugins/lsp/mason.lua
+++ b/lua/ben/plugins/lsp/mason.lua
@@ -24,49 +24,16 @@ return {
})
mason_lspconfig.setup({
-- list of servers for mason to install
- ensure_installed = {
- "bashls",
- "cssls",
- "diagnosticls",
- "dockerls",
- "docker_compose_language_service",
- "gopls",
- "lua_ls",
- "texlab",
- "zk",
- "pyright",
- "r_language_server",
- "sqls",
- },
+ ensure_installed = {},
-- auto-install configured servers (with lspconfig)
automatic_installation = true, -- not the same as ensure_installed
})
mason_tool_installer.setup({
ensure_installed = {
- "mutt-language-server",
- "emmet-ls",
- -- Linters:
- "prettier",
- "bibtex-tidy",
- "goimports",
- "gci",
- "golines",
- "shfmt",
- "latexindent",
- "sql-formatter",
- "isort",
- "black",
- "yamlfix",
- "stylua",
- -- Formatters:
- "stylelint",
- "markdownlint",
- "pylint",
"golangci-lint",
"shellcheck",
},
})
-
end,
}