Skip to content

Commit c8553ca

Browse files
committed
feat(plugin): allow some lazy.nvim spec props to be set by the user
1 parent 9997523 commit c8553ca

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

lua/lazy/core/plugin.lua

+10-2
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,15 @@ function M.load()
212212
local spec = M.spec()
213213

214214
-- 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 = {}
217224

218225
local existing = Config.plugins
219226
Config.plugins = spec.plugins
@@ -228,6 +235,7 @@ function M.load()
228235
Util.track("state")
229236
M.update_state()
230237
Util.track()
238+
require("lazy.core.cache").indexed_unloaded = false
231239
end
232240

233241
-- Finds the plugin that has this path

0 commit comments

Comments
 (0)