Skip to content

Commit

Permalink
feat(checker): defer checker to after VeryLazy to make sure nvim-noti…
Browse files Browse the repository at this point in the history
…fy and others are loaded
  • Loading branch information
folke committed Dec 21, 2022
1 parent 58f0876 commit fd1fbef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/lazy/core/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
})
Expand Down

0 comments on commit fd1fbef

Please sign in to comment.