diff --git a/lua/config/autocmds.lua b/lua/config/autocmds.lua index ca1762e..1cb625a 100644 --- a/lua/config/autocmds.lua +++ b/lua/config/autocmds.lua @@ -14,8 +14,9 @@ vim.api.nvim_create_autocmd("User", { -- NOTE: Use vim.schedule when you need to perform an action asynchronously -- or when you want to defer execution until the event loop is ready. -- The function is run *before* any lua code above it. - vim.schedule(function() - -- vim.notify("I run before the vim.notify above") - end) + + -- vim.schedule(function() + -- vim.notify("I run before the vim.notify above") + -- end) end, })