Compare commits

..

No commits in common. "9f20a69f0b88bfe114e89c5cfdf371b72d4c7de7" and "31b4bde4ae65abcbee67422afe4f20e47ff12dc8" have entirely different histories.

2 changed files with 12 additions and 18 deletions

View file

@ -266,6 +266,4 @@ set commentstring=//%s
let g:vala_syntax_folding_enabled = 0 let g:vala_syntax_folding_enabled = 0
let g:python_recommended_style = 0
" }}} " }}}

View file

@ -1,21 +1,17 @@
" mappings {{{ " mappings {{{
let g:gitgutter_map_keys = 0 let g:gitgutter_map_keys = 0
nnoremap <leader>gg :<C-u>G nnoremap <leader>gg :G
nnoremap <leader>g :<C-u>Git<space> nnoremap <leader>g :Git<space>
nnoremap <leader>gs :<C-u>vertical Git<CR> nnoremap <leader>gs :vertical Git<CR>
nnoremap <leader>gd :<C-u>Gdiffsplit nnoremap <leader>gd :Gdiffsplit
nnoremap <leader>gb :<C-u>Git blame<CR> nnoremap <leader>gb :Git blame<CR>
nnoremap <leader>gw :<C-u>GBrowse<CR> nnoremap <leader>gw :GBrowse<CR>
nnoremap <leader>gW :<C-u>.GBrowse<CR> nnoremap <leader>gW :.GBrowse<CR>
nnoremap <leader>gc :<C-u>Git commit % nnoremap <leader>gc :Git commit %
nnoremap <leader>gC :<C-u>Git commit --amend nnoremap <leader>gC :Git commit --amend
nnoremap <leader>gl :<C-u>Gclog<CR> nnoremap <leader>gl :Gclog<CR>
nnoremap <leader>gp :<C-u>Git push nnoremap <leader>gp :Git push
nnoremap <leader>gP :<C-u>Git push --force-with-lease nnoremap <leader>gP :Git push --force-with-lease
" Jump to the next/previous change in the diff mode because I replace the
" built-in mappings with coc.nvim's for jumping through diagnostics.
nnoremap [g [c
nnoremap ]g ]c
" }}} " }}}
" Fugitive.vim handlers {{{ " Fugitive.vim handlers {{{