We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e6c863 commit a9c660dCopy full SHA for a9c660d
lua/lazy/core/config.lua
@@ -96,6 +96,7 @@ M.defaults = {
96
icons = {
97
cmd = " ",
98
config = "",
99
+ debug = "●",
100
event = " ",
101
favorite = " ",
102
ft = " ",
lua/lazy/view/render.lua
@@ -759,7 +759,7 @@ function M:debug()
759
---@type string[]
760
plugins = vim.tbl_values(plugins)
761
table.sort(plugins)
762
- self:append("● ", "LazySpecial", { indent = 2 })
+ self:append(Config.options.ui.icons.debug, "LazySpecial", { indent = 2 })
763
if handler_type == "keys" then
764
for k, v in pairs(Config.plugins[plugins[1]]._.handlers.keys) do
765
if k == value then
0 commit comments