mirror of https://github.com/folke/lazy.nvim.git
feat(checker): defer checker to after VeryLazy to make sure nvim-notify and others are loaded
This commit is contained in:
parent
58f0876e81
commit
fd1fbefc3d
|
@ -163,7 +163,9 @@ function M.setup(spec, opts)
|
|||
require("lazy.manage.reloader").enable()
|
||||
end
|
||||
if M.options.checker.enabled then
|
||||
require("lazy.manage.checker").start()
|
||||
vim.defer_fn(function()
|
||||
require("lazy.manage.checker").start()
|
||||
end, 10)
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue