From d831d424695f9397427b41ec895abe394d8aded7 Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Mon, 15 Apr 2024 00:12:39 -0700 Subject: [PATCH] uncomment useless thing --- lua/config/autocmds.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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, })