From b2eadf08e97c4a026ec56ec3c5ae49f1fb59d357 Mon Sep 17 00:00:00 2001 From: Matthias Puchstein Date: Wed, 29 Jan 2025 15:55:17 +0100 Subject: [PATCH] added signify --- vim/vimrc | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 1b0950b..9e1d6bb 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -26,15 +26,6 @@ filetype plugin indent on " Turn syntax highlighting on. syntax on -" Set color scheme -colors deus - -" Set color scheme for airline -let g:airline_theme='deus' - -" Let airline use powerline fonts -let g:airline_powerline_fonts=1 - " Highlight cursor line underneath the cursor horizontally. set cursorline @@ -99,13 +90,26 @@ set showmode set showcmd " Plugin Settings + +" Set color scheme +colors deus + +" Set color scheme for airline +let g:airline_theme='deus' + +" Let airline use powerline fonts +let g:airline_powerline_fonts=1 + +" List vcs for sy +let g:signify_vcs_list=['git'] + " CoC " utf-8 already set " Some servers have issues with backup files set nobackup set nowritebackup " Having loger updatetime leads to noticable delays -set updatetime=300 +set updatetime=100 " Always show signcolumn, otherwise it would shift the text each time " diagnostics appear/become resolved set signcolumn=yes