From afd5c22140952524460e187752d5761fd3976bf5 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Fri, 31 Jul 2026 12:25:35 -0400 Subject: [PATCH] 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 --- lua/config/lazy.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index d4f73b0..121626a 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -30,6 +30,7 @@ require("lazy").setup({ }, install = { colorscheme = { "kanagawa-dragon", "habamax" } }, checker = { enabled = true }, -- automatically check for plugin updates + rocks = { enabled = false }, git = { concurrency = 3, -- reduce concurrent git operations (default is higher) },