chore: Use #region #endregion

This commit is contained in:
Ahmad Ansori Palembani 2025-06-20 17:25:23 +07:00
parent fe54bfdc5f
commit bb755297de
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: BA64F8B60AF3EFB6

View file

@ -30,7 +30,8 @@ function M.map(modes, key, target, opts)
}) })
end end
-- <<[LAZY] REF: https://github.com/LazyVim/LazyVim/blob/7a5dbea/lua/lazyvim/util/plugin.lua#L59-L124 --#region LAZY
-- REF: https://github.com/LazyVim/LazyVim/blob/7a5dbea/lua/lazyvim/util/plugin.lua#L59-L124
-- Properly load file based plugins without blocking the UI -- Properly load file based plugins without blocking the UI
function M.lazy_file() function M.lazy_file()
M.use_lazy_file = M.use_lazy_file and vim.fn.argc(-1) > 0 M.use_lazy_file = M.use_lazy_file and vim.fn.argc(-1) > 0
@ -98,7 +99,6 @@ function M.lazy_file()
end, end,
}) })
end end
--#endregion
-- >>[LAZY]
return M return M