Add vim-signify; remove vim-gitgutter

References #488.
This commit is contained in:
Marco Hinz 2013-11-05 12:49:01 +01:00
parent eb48f32ae9
commit 4b254f823d
2 changed files with 6 additions and 14 deletions

18
.vimrc
View File

@ -147,11 +147,8 @@
set cursorline " Highlight current line set cursorline " Highlight current line
highlight clear SignColumn " SignColumn should match background for highlight clear SignColumn " SignColumn should match background
" things like vim-gitgutter highlight clear LineNr " Current line number row will have same background color in relative mode
highlight clear LineNr " Current line number row will have same background color in relative mode.
" Things like vim-gitgutter will match LineNr highlight
"highlight clear CursorLineNr " Remove highlight color from current line number "highlight clear CursorLineNr " Remove highlight color from current line number
if has('cmdline_info') if has('cmdline_info')
@ -529,10 +526,10 @@
nnoremap <silent> <leader>gb :Gblame<CR> nnoremap <silent> <leader>gb :Gblame<CR>
nnoremap <silent> <leader>gl :Glog<CR> nnoremap <silent> <leader>gl :Glog<CR>
nnoremap <silent> <leader>gp :Git push<CR> nnoremap <silent> <leader>gp :Git push<CR>
nnoremap <silent> <leader>gr :Gread<CR>:GitGutter<CR> nnoremap <silent> <leader>gr :Gread<CR>
nnoremap <silent> <leader>gw :Gwrite<CR>:GitGutter<CR> nnoremap <silent> <leader>gw :Gwrite<CR>
nnoremap <silent> <leader>ge :Gedit<CR> nnoremap <silent> <leader>ge :Gedit<CR>
nnoremap <silent> <leader>gg :GitGutterToggle<CR> nnoremap <silent> <leader>gg :SignifyToggle<CR>
"} "}
" neocomplete { " neocomplete {
@ -772,11 +769,6 @@
endif endif
" } " }
" vim-gitgutter {
" https://github.com/airblade/vim-gitgutter/issues/106
let g:gitgutter_realtime = 0
" }
" } " }
" GUI Settings { " GUI Settings {

View File

@ -124,7 +124,7 @@
if !exists('g:spf13_no_views') if !exists('g:spf13_no_views')
Bundle 'vim-scripts/restore_view.vim' Bundle 'vim-scripts/restore_view.vim'
endif endif
Bundle 'airblade/vim-gitgutter' Bundle 'mhinz/vim-signify'
Bundle 'tpope/vim-abolish.git' Bundle 'tpope/vim-abolish.git'
endif endif
" } " }