2024-11-01 23:13:35 +01:00
|
|
|
return {
|
|
|
|
{
|
|
|
|
"williamboman/mason.nvim",
|
|
|
|
|
|
|
|
config = function()
|
|
|
|
require("mason").setup()
|
|
|
|
end
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"williamboman/mason-lspconfig.nvim",
|
2025-02-12 16:33:32 +01:00
|
|
|
|
2024-11-01 23:13:35 +01:00
|
|
|
config = function()
|
2025-02-12 16:36:08 +01:00
|
|
|
local mason_lspconfig = require("mason-lspconfig")
|
2024-11-01 23:13:35 +01:00
|
|
|
|
|
|
|
mason_lspconfig.setup({
|
|
|
|
ensure_installed = { "clangd", "texlab", "lua_ls", "matlab_ls", "mesonlsp", "sqlls", "svlangserver", "ts_ls", "volar" }
|
|
|
|
})
|
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|