From fd0db7d448f9c6807cb467c339c7a3d4356c31d0 Mon Sep 17 00:00:00 2001 From: Ducky Date: Wed, 1 Jan 2025 20:12:15 +1000 Subject: [PATCH] Add lazygit keymap --- lua/custom/plugins/lazygit.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/custom/plugins/lazygit.lua b/lua/custom/plugins/lazygit.lua index 09077b9..e310378 100644 --- a/lua/custom/plugins/lazygit.lua +++ b/lua/custom/plugins/lazygit.lua @@ -4,4 +4,7 @@ return { dependencies = { 'nvim-lua/plenary.nvim', }, + config = function() + vim.keymap.set('n', 'gg', ':LazyGit ') + end, }