dotfiles/.config/nvim/lua/plugins/mason-lspconfig.lua

20 lines
529 B
Lua
Raw Normal View History

local mason_lspconfig = require "mason-lspconfig"
mason_lspconfig.setup({
ensure_installed = { "sumneko_lua", "rust_analyzer" , "texlab", "hls"},
2022-12-06 15:52:28 +00:00
automatic_installation = true
})
local lspconfig = require "lspconfig"
mason_lspconfig.setup_handlers {
-- This is a default handler that will be called for each installed server (also for new servers that are installed during a session)
function (server_name)
lspconfig[server_name].setup {
on_attach = on_attach,
flags = lsp_flags,
}
end,
}