Added missing which-key icons

This commit is contained in:
2025-12-09 11:31:27 +00:00
parent 76d4ca486c
commit 2b91aa053b
3 changed files with 9 additions and 3 deletions

View File

@@ -10,11 +10,13 @@ return { -- UI components and other visual elements are declared here
{ "MunifTanjim/nui.nvim", lazy = true },
{ -- Useful plugin to show you pending keybinds.
"folke/which-key.nvim",
event = "VimEnter",
event = "VeryLazy",
config = function()
local wk = require("which-key")
local groups = require("config.keys").groups
local commands = require("config.keys").commands
wk.add(groups)
wk.add(commands)
end,
},
{