From 846abcca9c2dff87b21cd572c167e82d14290be9 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Tue, 29 Jun 2021 21:37:55 +0200 Subject: [PATCH] vim: Use signify instead of gutter --- .vimrc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 7be3a37..8bac8c5 100644 --- a/.vimrc +++ b/.vimrc @@ -557,8 +557,6 @@ Plugin 'gmarik/Vundle.vim' "Rust Plugin 'rust-lang/rust.vim' -" Show current modified line -Plugin 'airblade/vim-gitgutter' " Communication with git Plugin 'tpope/vim-fugitive' " Support for Gbrowse @@ -571,8 +569,15 @@ Plugin 'tmux-plugins/vim-tmux-focus-events' Plugin 'sheerun/vim-polyglot' " color even for terminal without gui... " Plugin 'vim-scripts/CSApprox' +" Show current modified line +" Plugin 'airblade/vim-gitgutter' " Same as gitgutter but for other cvs "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 Plugin 'mbbill/echofunc' @@ -792,4 +797,5 @@ Plugin 'RRethy/vim-illuminate' " Parentheses with various colors Plugin 'luochen1990/rainbow' let g:rainbow_active = 1 "set to 0 if you want to enable it later via :RainbowToggle + call vundle#end()