From 488f73d40dfe335be52bc894783b1d23fa90f4cc Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Mon, 9 Feb 2026 22:09:49 -0600 Subject: [PATCH] enable mini git and configure keybindings --- lua/custom/plugins/mini.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/custom/plugins/mini.lua b/lua/custom/plugins/mini.lua index 5668e68e..3776c239 100644 --- a/lua/custom/plugins/mini.lua +++ b/lua/custom/plugins/mini.lua @@ -23,5 +23,9 @@ return { statusline.setup { use_icons = vim.g.have_nerd_font } ---@diagnostic disable-next-line: duplicate-set-field statusline.section_location = function() return '%2l:%-2v' end + + vim.keymap.set('n', 'ga', 'Git add -A', { desc = 'Git add all' }) + vim.keymap.set('n', 'gc', 'Git commit', { desc = 'Git commit' }) + vim.keymap.set('n', 'gs', 'Git stash', { desc = 'Git stash' }) end, }