From 9428bcd71b746c6d453d776b5b0936436140e3cc Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 15 May 2025 09:10:58 -0700 Subject: [PATCH] fix: prevent overlap between lazygit and grep --- lua/custom/plugins/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 245d5ce..5b97024 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -71,7 +71,7 @@ return { 'nvim-lua/plenary.nvim', }, config = function() - vim.keymap.set('n', 'gg', function() + vim.keymap.set('n', 'lg', function() vim.cmd 'LazyGit' end, {}) end,