Skip to content

Commit 5aca928

Browse files
committed
perf(util): execute VeryLazy right after UIEnter
1 parent 8756c09 commit 5aca928

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lua/lazy/core/util.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ end
141141

142142
function M.very_lazy()
143143
local function _load()
144-
vim.defer_fn(function()
144+
vim.schedule(function()
145145
vim.g.did_very_lazy = true
146146
vim.cmd("do User VeryLazy")
147-
end, 50)
147+
end)
148148
end
149149

150150
vim.api.nvim_create_autocmd("User", {
@@ -154,7 +154,7 @@ function M.very_lazy()
154154
if vim.v.vim_did_enter == 1 then
155155
_load()
156156
else
157-
vim.api.nvim_create_autocmd("VimEnter", {
157+
vim.api.nvim_create_autocmd("UIEnter", {
158158
once = true,
159159
callback = function()
160160
_load()

0 commit comments

Comments
 (0)