vim: Use signify instead of gutter
This commit is contained in:
parent
78dcd28e98
commit
846abcca9c
10
.vimrc
10
.vimrc
@ -557,8 +557,6 @@ Plugin 'gmarik/Vundle.vim'
|
|||||||
"Rust
|
"Rust
|
||||||
Plugin 'rust-lang/rust.vim'
|
Plugin 'rust-lang/rust.vim'
|
||||||
|
|
||||||
" Show current modified line
|
|
||||||
Plugin 'airblade/vim-gitgutter'
|
|
||||||
" Communication with git
|
" Communication with git
|
||||||
Plugin 'tpope/vim-fugitive'
|
Plugin 'tpope/vim-fugitive'
|
||||||
" Support for Gbrowse
|
" Support for Gbrowse
|
||||||
@ -571,8 +569,15 @@ Plugin 'tmux-plugins/vim-tmux-focus-events'
|
|||||||
Plugin 'sheerun/vim-polyglot'
|
Plugin 'sheerun/vim-polyglot'
|
||||||
" color even for terminal without gui...
|
" color even for terminal without gui...
|
||||||
" Plugin 'vim-scripts/CSApprox'
|
" Plugin 'vim-scripts/CSApprox'
|
||||||
|
" Show current modified line
|
||||||
|
" Plugin 'airblade/vim-gitgutter'
|
||||||
" Same as gitgutter but for other cvs
|
" Same as gitgutter but for other cvs
|
||||||
"Plugin mhinz/vim-signify
|
"Plugin mhinz/vim-signify
|
||||||
|
if has('nvim') || has('patch-8.0.902')
|
||||||
|
Plugin 'mhinz/vim-signify'
|
||||||
|
else
|
||||||
|
Plugin 'mhinz/vim-signify', { 'branch': 'legacy' }
|
||||||
|
endif
|
||||||
|
|
||||||
" echofunc -> what is the current function
|
" echofunc -> what is the current function
|
||||||
Plugin 'mbbill/echofunc'
|
Plugin 'mbbill/echofunc'
|
||||||
@ -792,4 +797,5 @@ Plugin 'RRethy/vim-illuminate'
|
|||||||
" Parentheses with various colors
|
" Parentheses with various colors
|
||||||
Plugin 'luochen1990/rainbow'
|
Plugin 'luochen1990/rainbow'
|
||||||
let g:rainbow_active = 1 "set to 0 if you want to enable it later via :RainbowToggle
|
let g:rainbow_active = 1 "set to 0 if you want to enable it later via :RainbowToggle
|
||||||
|
|
||||||
call vundle#end()
|
call vundle#end()
|
||||||
|
Loading…
Reference in New Issue
Block a user