From 8491a45ee231b10b152bcf510180308db38cc59a Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Wed, 16 Mar 2016 14:10:48 -0700 Subject: [PATCH] Revert "Get rid of syntastic" This reverts commit 4fe82f00fa522020e61f71da5ef8bdd14b174521. --- .vim/plugins.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vim/plugins.vim b/.vim/plugins.vim index 1fa2f83..3a1d3dd 100644 --- a/.vim/plugins.vim +++ b/.vim/plugins.vim @@ -44,6 +44,7 @@ Plug 'https://github.com/vim-latex/vim-latex.git' if has('unix') 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/scrooloose/syntastic.git', { 'do': 'sudo npm -g install jshint; sudo pip install --upgrade pyflakes' } endif call plug#end() @@ -55,6 +56,11 @@ let g:ag_working_path_mode="r" let g:ctrlp_cmd = 'CtrlPMixed' 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 let g:airline#extensions#tabline#enabled = 1