From e8cb863703276c579d781b7e4e0b27052df8fc68 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Mon, 16 Jan 2023 12:33:03 +0100 Subject: [PATCH] fix(util): rever --- lua/lazy/core/util.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/lazy/core/util.lua b/lua/lazy/core/util.lua index 58874d3..5173520 100644 --- a/lua/lazy/core/util.lua +++ b/lua/lazy/core/util.lua @@ -142,9 +142,9 @@ end function M.very_lazy() local function _load() vim.schedule(function() - if vim.v.exiting then - return - end + -- if vim.v.exiting then + -- return + -- end vim.g.did_very_lazy = true vim.api.nvim_exec_autocmds("User", { pattern = "VeryLazy", modeline = false }) end)