feat(dashboard): show loaded/count plugins on dashboard instead of just count

This commit is contained in:
Folke Lemaitre committed 2023-10-09 12:49:33 +02:00
1 parent 2abb5907ef
commit 9670c8a400
2 files changed
+8 -2

No files matched your search

+1 -1
View File
@@ -38,7 +38,7 @@ return {
footer = function()
local stats = require("lazy").stats()
local ms = (math.floor(stats.startuptime * 100 + 0.5) / 100)
return { "⚡ Neovim loaded " .. stats.count .. " plugins in " .. ms .. "ms" }
return { "⚡ Neovim loaded " .. stats.loaded .. "/" .. stats.count .. " plugins in " .. ms .. "ms" }
end,
},
}