diff --git a/modules/home/apps/tools/neovim/config/lua/plugins/ui/which-key.lua b/modules/home/apps/tools/neovim/config/lua/plugins/ui/which-key.lua index 05e2964..735102e 100644 --- a/modules/home/apps/tools/neovim/config/lua/plugins/ui/which-key.lua +++ b/modules/home/apps/tools/neovim/config/lua/plugins/ui/which-key.lua @@ -4,7 +4,7 @@ return { "folke/which-key.nvim", event = "VeryLazy", init = function() - require("which-key").register({ + require("which-key").add({ { "C", group = format("Package", "Crates") }, { "D", group = format("Database", "DbUI") }, { "S", group = format("FolderClock", "Session") }, @@ -24,13 +24,13 @@ return { }) end, opts = { - key_labels = { + replace = { [""] = " ", }, icons = { group = "", }, - window = { + win = { border = "rounded", }, },