From 24f7bb50b6d4c5398151d6e3944bfbfd0a84cc34 Mon Sep 17 00:00:00 2001 From: CronyAkatsuki Date: Sun, 24 Dec 2023 19:23:38 +0100 Subject: [PATCH] Remove unnecessary keybindings. --- after/plugin/gitsigns.lua | 6 ------ 1 file changed, 6 deletions(-) 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, })