diff --git a/.config/nvim/lua/plugins/which-key.lua b/.config/nvim/lua/plugins/which-key.lua index 81df5d2..30afbd8 100644 --- a/.config/nvim/lua/plugins/which-key.lua +++ b/.config/nvim/lua/plugins/which-key.lua @@ -5,7 +5,7 @@ return { }, config = function() local wk = require("which-key") - wk.register({ + wk.add({ { "a", group = "actions" }, { "c", group = "terminal" }, { "d", group = "debug" }, @@ -15,7 +15,8 @@ return { { "r", group = "refactoring" }, { "t", group = "telescope" }, { "v", group = "vcs" }, - }, { prefix = "" }) + + }) end, dependencies = { "echasnovski/mini.icons",