From a06b1043762ba3346cd05ead542a177d5c53f3b0 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Mon, 15 Feb 2021 16:22:36 +0200 Subject: [PATCH] [nvim] update the mappings for fugitive --- nvim/plugin/git.vim | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/nvim/plugin/git.vim b/nvim/plugin/git.vim index 66ca1dd..901d487 100644 --- a/nvim/plugin/git.vim +++ b/nvim/plugin/git.vim @@ -2,11 +2,12 @@ let g:gitgutter_map_keys = 0 nnoremap gg :G nnoremap g :Git - nnoremap gs :vertical Gstatus - nnoremap gd :Gdiff - nnoremap gb :Gblame - nnoremap gw :Gbrowse + nnoremap gs :vertical Git + nnoremap gd :Gdiffsplit + nnoremap gb :Git blame + nnoremap gw :GBrowse + nnoremap gW :.GBrowse nnoremap gc :Gcommit % - nnoremap gl :Glog - nnoremap gp :Gpush + nnoremap gl :Gclog + nnoremap gp :Git push " }}}