From 4ed20b9358ecb5b8f40bab38006e8e49dc039e22 Mon Sep 17 00:00:00 2001 From: kageru Date: Mon, 8 Apr 2019 16:03:09 +0200 Subject: [PATCH] Added vim plugins, changed color scheme, switched syntastic to on-demand scanning --- .vimrc | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 1be2c3d..cce2c29 100644 --- a/.vimrc +++ b/.vimrc @@ -17,6 +17,9 @@ Plugin 'rust-lang/rust.vim' Plugin 'fatih/vim-go' Plugin 'udalov/kotlin-vim' Plugin 'Valloric/YouCompleteMe' +Plugin 'phanviet/vim-monokai-pro' +Plugin 'wincent/command-t' + "Plugin 'zxqfl/tabnine-vim' call vundle#end() " required @@ -55,7 +58,10 @@ set backspace=indent,eol,start let g:hybrid_custom_term_colors = 1 let g:hybrid_reduced_contrast = 1 set background=dark -colorscheme hybrid +let &t_8f = "\[38;2;%lu;%lu;%lum" +let &t_8b = "\[48;2;%lu;%lu;%lum" +set termguicolors +colorscheme monokai_pro syntax on set statusline+=%#warningmsg# @@ -64,6 +70,9 @@ set statusline+=%* let g:syntastic_always_populate_loc_list = 1 let g:syntastic_auto_loc_list = 1 -let g:syntastic_check_on_open = 1 +let g:syntastic_check_on_open = 0 let g:syntastic_check_on_wq = 0 +let g:syntastic_check_on_write = 0 +let g:syntastic_mode_map = { 'mode': 'passive' } +nmap :SyntasticCheck