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() vim.defer_fn(function()
require('mason-tool-installer').setup { require('mason-tool-installer').setup {
ensure_installed = { -- ensure_installed = {
-- "clangd", -- -- "clangd",
-- "jedi_language_server", -- -- "jedi_language_server",
-- "ruff", -- -- "ruff",
"clang-format", -- "clang-format",
"prettier", -- "prettier",
"black", -- "black",
"mypy", -- "mypy",
"lexical" -- "lexical"
}, -- },
auto_update = true, auto_update = true,
automatic_installation = false,
} }
end, 0) end, 0)