Disable lazy.nvim luarocks integration

oxocarbon.nvim published a rockspec, which made lazy.nvim attempt a luarocks
install on every startup: it cloned hererocks, failed the build, raised "Too
many rounds of missing plugins", and cost ~2.2s per launch. Nothing here needs
luarocks.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-31 12:27:20 -04:00
co-authored by Claude Opus 5
parent aa459c4f52
commit afd5c22140
+1
View File
@@ -30,6 +30,7 @@ require("lazy").setup({
}, },
install = { colorscheme = { "kanagawa-dragon", "habamax" } }, install = { colorscheme = { "kanagawa-dragon", "habamax" } },
checker = { enabled = true }, -- automatically check for plugin updates checker = { enabled = true }, -- automatically check for plugin updates
rocks = { enabled = false },
git = { git = {
concurrency = 3, -- reduce concurrent git operations (default is higher) concurrency = 3, -- reduce concurrent git operations (default is higher)
}, },