From 473361139cc05936cd5afb08ab68e5bee1ebb5b3 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Wed, 26 Jun 2024 08:49:42 +0200 Subject: [PATCH] fix(rockspec): dont lazy-load rock deps --- lua/lazy/pkg/rockspec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazy/pkg/rockspec.lua b/lua/lazy/pkg/rockspec.lua index 7d46034..02c6155 100644 --- a/lua/lazy/pkg/rockspec.lua +++ b/lua/lazy/pkg/rockspec.lua @@ -257,7 +257,7 @@ function M.get(plugin) return false elseif url then -- Neovim plugin rock - table.insert(specs, { url, lazy = true }) + table.insert(specs, { url }) return false end return not vim.tbl_contains(M.skip, name)