2022-10-08 10:44:11 +00:00
|
|
|
local servers = {
|
2022-11-17 18:58:39 +00:00
|
|
|
"ansiblels",
|
2022-10-08 10:44:11 +00:00
|
|
|
"bashls",
|
2022-11-17 18:58:39 +00:00
|
|
|
"gopls",
|
2022-11-26 19:00:35 +00:00
|
|
|
"html",
|
2023-12-17 13:44:47 +00:00
|
|
|
-- "kotlin_language_server",
|
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",
|
2024-03-22 16:21:22 +00:00
|
|
|
"basedpyright",
|
2023-03-12 12:58:45 +00:00
|
|
|
"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-11-03 17:48:15 +00:00
|
|
|
if server ~= "yamlls" then
|
|
|
|
local opts = {
|
|
|
|
on_attach = require("plugins.lsp.handlers").on_attach,
|
|
|
|
capabilities = require("plugins.lsp.handlers").capabilities,
|
|
|
|
}
|
2022-10-08 10:44:11 +00:00
|
|
|
|
2023-11-03 17:48:15 +00:00
|
|
|
server = vim.split(server, "@")[1]
|
2022-10-08 10:44:11 +00:00
|
|
|
|
2023-11-03 17:48:15 +00:00
|
|
|
-- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
|
|
|
|
local config_exists, conf_opts = pcall(require, "plugins.lsp.settings." .. server)
|
|
|
|
if config_exists then
|
|
|
|
opts = vim.tbl_deep_extend("force", conf_opts, opts)
|
|
|
|
end
|
2022-10-08 10:44:11 +00:00
|
|
|
|
2023-11-03 17:48:15 +00:00
|
|
|
lspconfig[server].setup(opts)
|
|
|
|
end
|
2022-10-08 10:44:11 +00:00
|
|
|
end
|