1
0

update syntastic plugin config and general plugin configuration

This commit is contained in:
valeth 2015-04-28 16:54:48 +02:00
parent 9bd602fcf0
commit 3963740b9a
2 changed files with 10 additions and 4 deletions

View File

@ -8,8 +8,10 @@ Plug 'majutsushi/tagbar'
Plug 'kien/ctrlp.vim'
Plug 'vim-scripts/gnupg'
Plug 'tomasr/molokai'
Plug 'junegunn/seoul256.vim'
Plug 'zefei/vim-colortuner', { 'on': 'Colortuner' }
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'scrooloose/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' }

View File

@ -2,8 +2,12 @@ let g:syntastic_enable_signs = 1
let g:syntastic_check_on_open = 1
let g:syntastic_enable_highlighting = 1
let g:syntastic_auto_loc_list = 1
"let g:syntastic_c_check_header = 1
"let g:syntastic_cpp_remove_include_errors = 1
"let g:syntastic_cpp_check_header = 1
"let g:syntastic_cpp_auto_refresh_includes = 1
let g:syntastic_c_check_header = 1
let g:syntastic_cpp_remove_include_errors = 1
let g:syntastic_cpp_check_header = 1
let g:syntastic_cpp_auto_refresh_includes = 1
let g:syntastic_tex_checkers = ["false"]
nnoremap <F1> :SyntasticToggleMode<CR>
inoremap <F1> <C-O>:SyntasticToggleMode<CR>
vnoremap <F1> <ESC>:SyntasticToggleMode<CR>