diff --git a/lua/plugins/git.lua b/lua/plugins/git.lua index 4b6c066..09ce95a 100644 --- a/lua/plugins/git.lua +++ b/lua/plugins/git.lua @@ -38,8 +38,8 @@ return { vim.keymap.set(mode, l, r, { buffer = buffer, desc = desc }) end - map("n", "]h", gs.next_hunk, "Next Hunk") - map("n", "[h", gs.prev_hunk, "Prev Hunk") + map("n", "[h", gs.next_hunk, "Next Hunk") + map("n", "]h", gs.prev_hunk, "Prev Hunk") map({ "n", "v" }, "ghr", "Gitsigns reset_hunk", "Reset Hunk") map("n", "ghR", gs.reset_buffer, "Reset Buffer") map("n", "ghp", gs.preview_hunk, "Preview Hunk")