V2 of my Neovim configuration.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
" Fugitive Configuration |
|
|
|
" Fugitive bindings |
|
nnoremap <Leader>gs :Git<CR> " This binding is a weird one. |
|
" :Git<CR> is now the full status page. |
|
nnoremap <Leader>gd :Git diff<CR> |
|
nnoremap <Leader>gb :Git blame<CR> |
|
nnoremap <Leader>gc :Git commit<CR> |
|
nnoremap <Leader>gp :Git push<CR>
|
|
|