File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -212,8 +212,15 @@ function M.load()
212
212
local spec = M .spec ()
213
213
214
214
-- add ourselves
215
- spec .plugins [" lazy.nvim" ] = nil
216
- spec :add ({ " folke/lazy.nvim" , lazy = true , dir = Config .me })
215
+ spec :add ({ " folke/lazy.nvim" })
216
+ -- override some lazy props
217
+ local lazy = spec .plugins [" lazy.nvim" ]
218
+ lazy .lazy = true
219
+ lazy .dir = Config .me
220
+ lazy .config = function ()
221
+ error (" lazy config should not be called" )
222
+ end
223
+ lazy ._ .loaded = {}
217
224
218
225
local existing = Config .plugins
219
226
Config .plugins = spec .plugins
@@ -228,6 +235,7 @@ function M.load()
228
235
Util .track (" state" )
229
236
M .update_state ()
230
237
Util .track ()
238
+ require (" lazy.core.cache" ).indexed_unloaded = false
231
239
end
232
240
233
241
-- Finds the plugin that has this path
You can’t perform that action at this time.
0 commit comments