plugins - Load vim-fugitive
This commit is contained in:
parent
4e48c149aa
commit
a6d2972758
3 changed files with 6 additions and 1 deletions
1
plugins/vim-fugitive.cfg.vim
Normal file
1
plugins/vim-fugitive.cfg.vim
Normal file
|
@ -0,0 +1 @@
|
|||
autocmd FileType fugitive setlocal signcolumn=no nonumber norelativenumber notimeout
|
22
plugins/vim-fugitive.load.vim
Normal file
22
plugins/vim-fugitive.load.vim
Normal file
|
@ -0,0 +1,22 @@
|
|||
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>
|
||||
nnoremap <silent> <Leader>gs :Git<cr>
|
||||
nnoremap <silent> <Leader>gc :Git commit -q<cr>
|
||||
nnoremap <silent> <Leader>gz :Git reset %:p<cr>
|
||||
nnoremap <Leader>gb :Git branch<space>
|
||||
|
||||
" Note: dangerous commands don't have a <cr>. Also commands that need
|
||||
" arguments, obviously.
|
||||
nnoremap <Leader>gB :Git checkout -b<space>
|
||||
nnoremap <Leader>gC :Git checkout<space>
|
||||
nnoremap <Leader>gM :GMove<space>
|
||||
nnoremap <Leader>gp :Git pull --recurse-submodules<space>
|
||||
nnoremap <Leader>gP :Git push<space>
|
||||
nnoremap <Leader>gr :GRename<space>
|
||||
nnoremap <Leader>gR :GRemove
|
Loading…
Add table
Add a link
Reference in a new issue