File tree 4 files changed +21
-11
lines changed
4 files changed +21
-11
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,11 @@ M.defaults = {
49
49
enabled = true ,
50
50
root = vim .fn .stdpath (" data" ) .. " /lazy-rocks" ,
51
51
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 ,
54
57
},
55
58
dev = {
56
59
--- @type string | fun ( plugin : LazyPlugin ): string directory where you store your local plugin projects
@@ -218,6 +221,13 @@ M.defaults = {
218
221
debug = false ,
219
222
}
220
223
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
+
221
231
M .version = " 11.8.1" -- x-release-please-version
222
232
223
233
M .ns = vim .api .nvim_create_namespace (" lazy" )
Original file line number Diff line number Diff line change @@ -336,16 +336,16 @@ function M.load()
336
336
end
337
337
338
338
-- 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
342
342
Config .spec .meta :add ({
343
343
" luarocks/hererocks" ,
344
344
build = " rockspec" ,
345
345
lazy = true ,
346
346
})
347
- break
348
347
end
348
+ break
349
349
end
350
350
end
351
351
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ function M.check()
125
125
126
126
start (" luarocks" )
127
127
if Config .options .rocks .enabled then
128
- if Config .options . rocks . hererocks then
128
+ if Config .hererocks () then
129
129
info (" checking `hererocks` installation" )
130
130
else
131
131
info (" checking `luarocks` installation" )
@@ -155,7 +155,7 @@ function M.check()
155
155
" Lazy won't be able to install plugins that require `luarocks`." ,
156
156
" Here's what you can do:" ,
157
157
" - 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`"
159
159
or " - enable `hererocks` with `opts.rocks.hererocks = true`" ,
160
160
" - disable `luarocks` support completely with `opts.rocks.enabled = false`" ,
161
161
}, " \n " ))
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ function M.check(opts)
72
72
}, opts or {})
73
73
74
74
local ok = false
75
- if Config .options . rocks . hererocks then
75
+ if Config .hererocks () then
76
76
if M .hererocks .building () then
77
77
ok = true
78
78
else
@@ -119,7 +119,7 @@ function M.build(task)
119
119
" " ,
120
120
" This plugin requires `luarocks`. Try one of the following:" ,
121
121
" - 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`"
123
123
or " - enable `hererocks` with `opts.rocks.hererocks = true`" ,
124
124
" - disable `luarocks` support completely with `opts.rocks.enabled = false`" ,
125
125
})
@@ -132,7 +132,7 @@ function M.build(task)
132
132
133
133
local env = {}
134
134
local luarocks = " luarocks"
135
- if Config .options . rocks . hererocks then
135
+ if Config .hererocks () then
136
136
-- hererocks is still building, so skip for now
137
137
-- a new build will happen in the next round
138
138
if M .hererocks .building () then
You can’t perform that action at this time.
0 commit comments