From 95532ea93b99c38f99b5a4abd4f09885f7f29e94 Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Thu, 25 Jan 2024 01:29:15 -0600 Subject: [PATCH] add shortcut to git log graph oneline --- lua/plugins/fugitive.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/plugins/fugitive.lua b/lua/plugins/fugitive.lua index f04de7c8..1a0aa0d5 100644 --- a/lua/plugins/fugitive.lua +++ b/lua/plugins/fugitive.lua @@ -3,5 +3,6 @@ return { 'tpope/vim-fugitive', vim.keymap.set('n', 'gs', 'Git', { desc = '[G]it [S]tatus' }); vim.keymap.set('n', 'ga', 'Git add -A', { desc = 'Stage [A]ll [G]it files' }); vim.keymap.set('n', 'gc', 'Git commit', { desc = '[C]ommit staged [G]it files' }); + vim.keymap.set('n', 'gg', 'Git log --graph --oneline', { desc = '[G]it log [G]raph' }); end };