diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index b61c0d9..d88fd3c 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -19,9 +19,9 @@ vim.opt.rtp:prepend(vim.env.LAZY or lazypath) require("lazy").setup({ spec = { { "LazyVim/LazyVim", import = "lazyvim.plugins" }, - { import = "ui" }, - { import = "plugins" }, - { import = "themes" }, + { import = "ui" }, -- UI Plugins + { import = "plugins" }, -- General Plugins + { import = "themes" }, -- Theme Plugins }, defaults = { lazy = false, version = false }, checker = { enabled = true }, @@ -37,4 +37,9 @@ require("lazy").setup({ }, }, }, + profiling = { + -- Track the time spent loading plugins + loader = true, + require = true, + }, })