From 49161119f717177e336d581540b739bfa97c8a31 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sun, 17 Jan 2021 23:53:31 +0000 Subject: [PATCH] vim: prefer other signs over gitgutter The information provided by gitgutter is great, but it should really never cover diagnostics from ycm. I believe this is why I made this change, I had this uncommitted local change for a while without any comments around it. --- vim/vimrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index ddc53d9..82617e8 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -18,7 +18,12 @@ call plug#begin('$XDG_DATA_HOME/vim') " This does not update vim-plug, use PlugUpgrade instead Plug 'junegunn/vim-plug' -Plug 'airblade/vim-gitgutter' +Plug 'airblade/vim-gitgutter' " {{{ +" prefer other signs such as ycm diags +let g:gitgutter_sign_priority = 1 +" don't clobber other signs +let g:gitgutter_sign_allow_clobber = 0 +"}}} Plug 'alepez/vim-gtest' Plug 'alx741/vinfo' Plug 'andrewradev/switch.vim' -- 2.48.1