diff options
fix: change `which-key.nvim` groups
Diffstat (limited to '')
-rw-r--r-- | lua/config/plugins/extra.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/config/plugins/extra.lua b/lua/config/plugins/extra.lua index 5f137ef..d12e690 100644 --- a/lua/config/plugins/extra.lua +++ b/lua/config/plugins/extra.lua @@ -6,7 +6,8 @@ return { require("which-key").setup() require("which-key").add({ - { "<leader>h", group = "hunk" }, + { "<leader>g", group = "git" }, + { "<leader>gh", group = "hunk" }, { "<leader>s", group = "search" }, { "<leader>S", group = "surround" }, }) |