From d85389871bcb35904ec553ff7cd6bcff55409b9d Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 18 Nov 2022 14:58:27 +0000 Subject: [PATCH] Add keymaps to quickly commit and checkout --- lua/keymaps.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/keymaps.lua b/lua/keymaps.lua index e25a11bd..c9f5c770 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -16,6 +16,8 @@ imap('jk', '') nmap('gf', 'Git fetch') nmap('gp', 'Git pull') nmap('gP', 'Git push') +nmap('cc', 'Git commit') +nmap('co', ':Git checkout') -- Telescope nmap(';', 'Telescope builtin')