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

This commit is contained in:
Folke Lemaitre 2023-10-09 12:49:33 +02:00
parent 2abb5907ef
commit 9670c8a400
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
2 changed files with 8 additions and 2 deletions

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,
},
}