Skip to content

Commit 9ab3061

Browse files
committed
perf(rocks): vim.fn.executable is slow on WSL2, so only check for luarocks when needed. Closes #1585
1 parent 8dd947f commit 9ab3061

File tree

4 files changed

+21
-11
lines changed

4 files changed

+21
-11
lines changed

lua/lazy/core/config.lua

+12-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,11 @@ M.defaults = {
4949
enabled = true,
5050
root = vim.fn.stdpath("data") .. "/lazy-rocks",
5151
server = "https://nvim-neorocks.github.io/rocks-binaries/",
52-
-- use hererocks to install luarocks.
53-
hererocks = vim.fn.executable("luarocks") == 0,
52+
-- use hererocks to install luarocks?
53+
-- set to `nil` to use hererocks when luarocks is not found
54+
-- set to `true` to always use hererocks
55+
-- set to `false` to always use luarocks
56+
hererocks = nil,
5457
},
5558
dev = {
5659
---@type string | fun(plugin: LazyPlugin): string directory where you store your local plugin projects
@@ -218,6 +221,13 @@ M.defaults = {
218221
debug = false,
219222
}
220223

224+
function M.hererocks()
225+
if M.options.rocks.hererocks == nil then
226+
M.options.rocks.hererocks = vim.fn.executable("luarocks") == 0
227+
end
228+
return M.options.rocks.hererocks
229+
end
230+
221231
M.version = "11.8.1" -- x-release-please-version
222232

223233
M.ns = vim.api.nvim_create_namespace("lazy")

lua/lazy/core/plugin.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -336,16 +336,16 @@ function M.load()
336336
end
337337

338338
-- add hererocks when enabled and needed
339-
if Config.options.rocks.hererocks then
340-
for _, plugin in pairs(Config.spec.plugins) do
341-
if plugin.build == "rockspec" then
339+
for _, plugin in pairs(Config.spec.plugins) do
340+
if plugin.build == "rockspec" then
341+
if Config.hererocks() then
342342
Config.spec.meta:add({
343343
"luarocks/hererocks",
344344
build = "rockspec",
345345
lazy = true,
346346
})
347-
break
348347
end
348+
break
349349
end
350350
end
351351

lua/lazy/health.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function M.check()
125125

126126
start("luarocks")
127127
if Config.options.rocks.enabled then
128-
if Config.options.rocks.hererocks then
128+
if Config.hererocks() then
129129
info("checking `hererocks` installation")
130130
else
131131
info("checking `luarocks` installation")
@@ -155,7 +155,7 @@ function M.check()
155155
"Lazy won't be able to install plugins that require `luarocks`.",
156156
"Here's what you can do:",
157157
" - fix your `luarocks` installation",
158-
Config.options.rocks.hererocks and " - disable *hererocks* with `opts.rocks.hererocks = false`"
158+
Config.hererocks() and " - disable *hererocks* with `opts.rocks.hererocks = false`"
159159
or " - enable `hererocks` with `opts.rocks.hererocks = true`",
160160
" - disable `luarocks` support completely with `opts.rocks.enabled = false`",
161161
}, "\n"))

lua/lazy/pkg/rockspec.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function M.check(opts)
7272
}, opts or {})
7373

7474
local ok = false
75-
if Config.options.rocks.hererocks then
75+
if Config.hererocks() then
7676
if M.hererocks.building() then
7777
ok = true
7878
else
@@ -119,7 +119,7 @@ function M.build(task)
119119
"",
120120
"This plugin requires `luarocks`. Try one of the following:",
121121
" - fix your `luarocks` installation",
122-
Config.options.rocks.hererocks and " - disable *hererocks* with `opts.rocks.hererocks = false`"
122+
Config.hererocks() and " - disable *hererocks* with `opts.rocks.hererocks = false`"
123123
or " - enable `hererocks` with `opts.rocks.hererocks = true`",
124124
" - disable `luarocks` support completely with `opts.rocks.enabled = false`",
125125
})
@@ -132,7 +132,7 @@ function M.build(task)
132132

133133
local env = {}
134134
local luarocks = "luarocks"
135-
if Config.options.rocks.hererocks then
135+
if Config.hererocks() then
136136
-- hererocks is still building, so skip for now
137137
-- a new build will happen in the next round
138138
if M.hererocks.building() then

0 commit comments

Comments
 (0)