2024-03-03 18:01:30 -05:00
|
|
|
return {
|
2024-11-11 12:05:28 -05:00
|
|
|
{
|
|
|
|
|
"williamboman/mason.nvim",
|
|
|
|
|
config = function()
|
|
|
|
|
require("mason").setup()
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"williamboman/mason-lspconfig.nvim",
|
|
|
|
|
config = function()
|
|
|
|
|
require("mason-lspconfig").setup({
|
2025-05-20 08:55:12 -04:00
|
|
|
ensure_installed = { "lua_ls", "intelephense", "rust_analyzer", "elixirls" },
|
2024-11-11 12:05:28 -05:00
|
|
|
})
|
|
|
|
|
end,
|
|
|
|
|
},
|
2024-03-03 18:01:30 -05:00
|
|
|
}
|