Open cactusnix opened 1 year ago
which theme the latest commit integeration lazy.
which theme the latest commit integeration lazy.
doom theme
I use this configuration and it works with lazy.nvim stats:
footer = function()
local stats = require('lazy').stats()
local ms = (math.floor(stats.startuptime * 100 + 0.5) / 100)
return { '⚡ Neovim loaded ' .. stats.loaded .. '/' .. stats.count .. ' plugins in ' .. ms .. 'ms' }
end,
When I call require("lazy").stats() to get startup time, but it always show 0. I think it might be due to startup time is generated till UIEnter. So I don't know how to make my own footer that shows startup time of lazy.nvim. Here is my code: