style: added more comments to init

This commit is contained in:
Folke Lemaitre 2022-12-01 16:37:50 +01:00
parent ac9e5401dc
commit e22e8e4506
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
2 changed files with 15 additions and 9 deletions

View file

@ -28,6 +28,7 @@ function M.setup()
end
function M.init_plugins()
Util.track("loader")
Util.track({ start = "init" })
for _, plugin in pairs(Config.plugins) do
if plugin.init then
@ -40,6 +41,7 @@ function M.init_plugins()
end
end
Util.track()
Util.track()
end
---@class Loader