nvim/lua/user/lsp/mason.lua

92 lines
1.8 KiB
Lua
Raw Normal View History

2022-10-12 22:07:20 -04:00
local servers = {
"lua_ls",
2022-12-12 04:29:48 -05:00
"cssls",
"html",
"tsserver",
"pyright",
"bashls",
"jsonls",
"yamlls",
"rust_analyzer",
"gopls",
2023-02-25 00:38:39 -05:00
"clangd",
"taplo"
2022-10-12 22:07:20 -04:00
}
local settings = {
2022-12-12 04:29:48 -05:00
ui = {
border = "none",
icons = {
package_installed = "",
package_pending = "",
package_uninstalled = "",
},
},
log_level = vim.log.levels.INFO,
max_concurrent_installers = 4,
2022-10-12 22:07:20 -04:00
}
require("mason").setup(settings)
require("mason-lspconfig").setup({
2022-12-12 04:29:48 -05:00
ensure_installed = servers,
automatic_installation = false,
2022-10-12 22:07:20 -04:00
})
local lspconfig_status_ok, lspconfig = pcall(require, "lspconfig")
if not lspconfig_status_ok then
2022-12-12 04:29:48 -05:00
return
2022-10-12 22:07:20 -04:00
end
local opts = {}
for _, server in pairs(servers) do
2022-12-12 04:29:48 -05:00
opts = {
on_attach = require("user.lsp.handlers").on_attach,
capabilities = require("user.lsp.handlers").capabilities,
}
2022-10-12 22:07:20 -04:00
2022-12-12 04:29:48 -05:00
server = vim.split(server, "@")[1]
2022-10-12 22:07:20 -04:00
2022-12-12 04:29:48 -05:00
local require_ok, conf_opts = pcall(require, "user.lsp.settings." .. server)
if require_ok then
opts = vim.tbl_deep_extend("force", conf_opts, opts)
end
2022-10-12 22:07:20 -04:00
2022-12-12 04:29:48 -05:00
lspconfig[server].setup(opts)
end
local mason_nvim_dap_ok, mason_nvim_dap = pcall(require, "mason-nvim-dap")
if mason_nvim_dap_ok then
local dap = require('dap')
mason_nvim_dap.setup({
automatic_setup = true,
})
mason_nvim_dap.setup_handlers({
function(source_name)
-- all sources with no handler get passed here
-- Keep original functionality of `automatic_setup = true`
require("mason-nvim-dap.automatic_setup")(source_name)
end,
python = function(source_name)
dap.adapters.python = {
type = "executable",
command = "/usr/bin/python3",
args = {
"-m",
"debugpy.adapter",
},
}
dap.configurations.python = {
{
type = "python",
request = "launch",
name = "Launch file",
program = "${file}", -- This configuration will launch the current file if used.
},
}
end,
})
2022-10-12 22:07:20 -04:00
end