plugins - Load vim-fugitive

This commit is contained in:
Emmanuel BENOîT 2023-06-18 15:24:02 +02:00
parent 4e48c149aa
commit a6d2972758
No known key found for this signature in database
GPG key ID: 2356DC6956CF54EF
3 changed files with 6 additions and 1 deletions

View file

@ -1 +0,0 @@
NeoBundle 'tpope/vim-fugitive'

View file

@ -0,0 +1 @@
autocmd FileType fugitive setlocal signcolumn=no nonumber norelativenumber notimeout

View file

@ -1,3 +1,8 @@
call dein#add('tpope/vim-fugitive', #{
\ lazy: 1,
\ on_cmd: [ 'Git', 'Gvdiffsplit', 'GMove', 'GRename', 'GRemove' ],
\ })
" Fugitive commands that don't require interaction with GitGutter or NERDTree
nnoremap <silent> <Leader>ga :Git add %:p<cr>
nnoremap <silent> <Leader>gd :Gvdiffsplit<cr>