1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-18 22:52:39 +00:00
dotfiles/.config/nvim/lua/plugins/lsp/mason.lua

50 lines
965 B
Lua
Raw Normal View History

2022-10-08 10:44:11 +00:00
local servers = {
"ansiblels",
2022-10-08 10:44:11 +00:00
"bashls",
"gopls",
"html",
2023-02-09 18:38:38 +00:00
"jdtls",
2022-10-08 10:44:11 +00:00
"jsonls",
2023-02-13 18:27:54 +00:00
"lua_ls",
2023-03-12 12:58:45 +00:00
"pyright",
"ruff_lsp",
2023-01-14 12:01:27 +00:00
"terraformls",
2022-10-08 10:44:11 +00:00
"yamlls",
}
local settings = {
ui = {
2022-10-12 14:02:54 +00:00
border = "rounded",
2022-10-08 10:44:11 +00:00
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = "",
},
},
log_level = vim.log.levels.INFO,
max_concurrent_installers = 4,
}
require("mason").setup(settings)
require("mason-lspconfig").setup({
ensure_installed = servers,
automatic_installation = true,
})
2023-04-12 18:09:30 +00:00
local lspconfig = require("lspconfig")
2022-10-08 10:44:11 +00:00
for _, server in pairs(servers) do
2023-04-12 18:09:30 +00:00
local opts = {
2022-10-16 10:28:51 +00:00
on_attach = require("plugins.lsp.handlers").on_attach,
capabilities = require("plugins.lsp.handlers").capabilities,
2022-10-08 10:44:11 +00:00
}
server = vim.split(server, "@")[1]
2023-04-12 18:09:30 +00:00
local config_exists, conf_opts = pcall(require, "plugins.lsp.settings." .. server)
if config_exists then
2022-10-08 10:44:11 +00:00
opts = vim.tbl_deep_extend("force", conf_opts, opts)
end
lspconfig[server].setup(opts)
end