fix(rockspec): dont lazy-load rock deps

This commit is contained in:
Folke Lemaitre 2024-06-26 08:49:42 +02:00
parent d63e80bae9
commit 473361139c
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 1 additions and 1 deletions

View File

@ -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)