From 2758e420cc42098debc1c419a7f1c2bf2cb6d3e8 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Thu, 15 Aug 2024 11:45:50 +0200 Subject: [PATCH] create keymap to access merginal plugin easier --- lua/custom/plugins/fugitive.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/custom/plugins/fugitive.lua b/lua/custom/plugins/fugitive.lua index 65121d3..1732799 100644 --- a/lua/custom/plugins/fugitive.lua +++ b/lua/custom/plugins/fugitive.lua @@ -21,6 +21,8 @@ return { vim.keymap.set('n', 'gp', 'Git pull', { desc = '[G]it [P]ull' }) -- Open history graph vim.keymap.set('n', 'gl', 'Flogsplitwincmd kq', { desc = '[G]it [L]og' }) + -- Open branch manager + vim.keymap.set('n', 'gm', 'Merginal', { desc = '[G]it [M]erginal' }) end, }, }