diff --git a/after/plugin/gitsigns.lua b/after/plugin/gitsigns.lua index 501ead3..a40f442 100644 --- a/after/plugin/gitsigns.lua +++ b/after/plugin/gitsigns.lua @@ -17,11 +17,5 @@ require("gitsigns").setup({ -- stylua: ignore start map("n", "]g", gs.next_hunk, "Next git hunk") map("n", "[g", gs.prev_hunk, "Previous git hunk") - map("n", "gh", gs.reset_hunk, "Reset Git Hunk") - map("n", "gr", gs.reset_buffer, "Reset Git Buffer") - map("n", "gs", gs.stage_hunk, "Stage Git Hunk") - map("n", "gS", gs.stage_buffer, "Stage Git Buffer") - map("n", "gu", gs.undo_stage_hunk, "UnStage Git Hunk") - map("n", "gd", gs.diffthis, "View Git Diff") end, })