Revert "Get rid of syntastic"

This reverts commit 4fe82f00fa.
This commit is contained in:
Alex Yatskov 2016-03-16 14:10:48 -07:00
parent 1e78773393
commit 8491a45ee2

View File

@ -44,6 +44,7 @@ Plug 'https://github.com/vim-latex/vim-latex.git'
if has('unix') if has('unix')
Plug 'https://github.com/Valloric/YouCompleteMe.git', { 'do': './install.sh --clang-completer' } Plug 'https://github.com/Valloric/YouCompleteMe.git', { 'do': './install.sh --clang-completer' }
Plug 'https://github.com/marijnh/tern_for_vim', { 'do': 'sudo npm install -g tern; npm install' } Plug 'https://github.com/marijnh/tern_for_vim', { 'do': 'sudo npm install -g tern; npm install' }
Plug 'https://github.com/scrooloose/syntastic.git', { 'do': 'sudo npm -g install jshint; sudo pip install --upgrade pyflakes' }
endif endif
call plug#end() call plug#end()
@ -55,6 +56,11 @@ let g:ag_working_path_mode="r"
let g:ctrlp_cmd = 'CtrlPMixed' let g:ctrlp_cmd = 'CtrlPMixed'
let g:ctrlp_working_path_mode = 'ra' let g:ctrlp_working_path_mode = 'ra'
" syntastic
auto FileType go let b:syntastic_mode = "passive"
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_python_checkers = ['pyflakes']
" vim-airline " vim-airline
let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#enabled = 1