[Mason] Update to new one, disable auto-enable

This commit is contained in:
Janis Hutz 2025-06-04 14:58:14 +02:00
parent f989dadbd2
commit ea0a0c68c6

View File

@ -1,8 +1,8 @@
return { return {
-- lsp package manager -- lsp package manager
"williamboman/mason.nvim", "mason-org/mason.nvim",
dependencies = { dependencies = {
"williamboman/mason-lspconfig.nvim", "mason-org/mason-lspconfig.nvim",
}, },
config = function() config = function()
-- import mason -- import mason
@ -37,7 +37,7 @@ return {
"vue_ls" "vue_ls"
}, },
-- auto-install configured servers (with lspconfig) -- auto-install configured servers (with lspconfig)
automatic_installation = false, automatic_enable = false
}) })
end, end,
} }