init.lua/lua/plugins/lsp.lua
David Senoner 45444ef947
Some checks are pending
Send submodule updates to parent repo / update (main) (push) Waiting to run
Send submodule updates to parent repo / update (tiling) (push) Waiting to run
lspconfig: adapted to use automatic_enable for all lsp servers
2025-05-10 11:11:08 +02:00

22 lines
435 B
Lua

return {
{
"mason-org/mason.nvim",
config = function()
require("mason").setup()
end
},
{
"williamboman/mason-lspconfig.nvim",
config = function()
local mason_lspconfig = require("mason-lspconfig")
mason_lspconfig.setup({
ensure_installed = { "clangd", "lua_ls", "matlab_ls", "mesonlsp", "texlab", "ts_ls", "volar", "zls" },
automatic_enable = true
})
end
}
}