mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-02-23 20:18:00 +00:00
67 lines
1.3 KiB
Lua
67 lines
1.3 KiB
Lua
local servers = {
|
|
"ansiblels",
|
|
"bashls",
|
|
"gopls",
|
|
"helm_ls",
|
|
"html",
|
|
-- "kotlin_language_server",
|
|
"jdtls",
|
|
"jsonls",
|
|
"lua_ls",
|
|
-- "marksman",
|
|
"basedpyright",
|
|
"ruff",
|
|
"terraformls",
|
|
"yamlls",
|
|
}
|
|
|
|
local settings = {
|
|
ui = {
|
|
border = "rounded",
|
|
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 = require("lspconfig")
|
|
for _, server in pairs(servers) do
|
|
if server ~= "yamlls" then
|
|
local opts = {
|
|
capabilities = require("blink.cmp").get_lsp_capabilities(),
|
|
}
|
|
|
|
server = vim.split(server, "@")[1]
|
|
|
|
-- 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
|
|
|
|
lspconfig[server].setup(opts)
|
|
end
|
|
end
|
|
|
|
local configs = require("lspconfig.configs")
|
|
configs.md_lsp = {
|
|
default_config = {
|
|
name = "md-lsp",
|
|
cmd = { "md-lsp" },
|
|
filetypes = { "markdown" },
|
|
root_dir = lspconfig.util.root_pattern(".git"),
|
|
single_file_support = true,
|
|
},
|
|
}
|
|
lspconfig.md_lsp.setup({})
|