Disabling automatic installs for mason

This commit is contained in:
Ian Roddis
2026-03-25 22:31:42 -03:00
parent 52dcb040ba
commit c0ca51f873
+11 -10
View File
@@ -642,17 +642,18 @@ end, 0)
vim.defer_fn(function()
require('mason-tool-installer').setup {
ensure_installed = {
-- "clangd",
-- "jedi_language_server",
-- "ruff",
"clang-format",
"prettier",
"black",
"mypy",
"lexical"
},
-- ensure_installed = {
-- -- "clangd",
-- -- "jedi_language_server",
-- -- "ruff",
-- "clang-format",
-- "prettier",
-- "black",
-- "mypy",
-- "lexical"
-- },
auto_update = true,
automatic_installation = false,
}
end, 0)