Skip to content

Commit

Permalink
missing hash character
Browse files Browse the repository at this point in the history
Co-authored-by: Raphael <glephunter@gmail.com>
  • Loading branch information
agoodshort and glepnir authored Jul 20, 2023
1 parent cbe25e2 commit b64a1ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/dashboard/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function utils.get_package_manager_stats()
if packer_plugins then
package_manager_stats.name = 'packer'
---@diagnostic disable-next-line: undefined-global
package_manager_stats.count = vim.tbl_keys(packer_plugins)
package_manager_stats.count = #vim.tbl_keys(packer_plugins)
end
local status, lazy = pcall(require, 'lazy')
if status then
Expand Down

0 comments on commit b64a1ec

Please sign in to comment.