2022-10-08 10:44:11 +00:00
|
|
|
local servers = {
|
|
|
|
"sumneko_lua",
|
|
|
|
"gopls",
|
|
|
|
"pyright",
|
|
|
|
"bashls",
|
|
|
|
"jsonls",
|
|
|
|
"yamlls",
|
2022-10-12 14:02:54 +00:00
|
|
|
"ansiblels",
|
2022-10-08 10:44:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
})
|
|
|
|
|
|
|
|
local lspconfig_status_ok, lspconfig = pcall(require, "lspconfig")
|
|
|
|
if not lspconfig_status_ok then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local opts = {}
|
|
|
|
|
|
|
|
for _, server in pairs(servers) do
|
|
|
|
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]
|
|
|
|
|
2022-10-16 10:28:51 +00:00
|
|
|
local require_ok, conf_opts = pcall(require, "plugins.lsp.settings." .. server)
|
2022-10-08 10:44:11 +00:00
|
|
|
if require_ok then
|
|
|
|
opts = vim.tbl_deep_extend("force", conf_opts, opts)
|
|
|
|
end
|
|
|
|
|
|
|
|
lspconfig[server].setup(opts)
|
|
|
|
end
|