From 19fc3df9a890752f84fc4eeff43fcd5a116a5bb8 Mon Sep 17 00:00:00 2001 From: Dennis Potter Date: Wed, 20 Jun 2018 17:38:38 +0200 Subject: [PATCH] Added indent lines --- init.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.vim b/init.vim index da04585..3839af4 100644 --- a/init.vim +++ b/init.vim @@ -93,6 +93,10 @@ let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 0 let g:syntastic_rust_checkers = ['cargo'] +" Indent settings +let g:indentLine_char = '┆' +let g:indentLine_color_term = 239 + call plug#begin() Plug 'SirVer/ultisnips' Plug 'honza/vim-snippets' @@ -109,6 +113,7 @@ Plug 'wvffle/vimterm' Plug 'Valloric/YouCompleteMe', { 'do': './install.py --clang-completer --rust-completer' } Plug 'rdnetto/YCM-generator', { 'branch': 'stable'} Plug 'chrisbra/Recover.vim' +Plug 'Yggdroot/indentLine' " versioning Plug 'tpope/vim-fugitive'