From: Maximilian Friedersdorff Date: Tue, 23 Feb 2016 15:39:40 +0000 (+0000) Subject: Force python3 and flake8 for python linting X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=e7b2a149a0956ecedbe4ca96818be025f61342a5;hp=0938c6ee832b9507bf01d0ca7645326c9b9024b5;p=max%2Fdotfiles.git Force python3 and flake8 for python linting --- diff --git a/vimrc b/vimrc index fcff8aa..0defe67 100644 --- a/vimrc +++ b/vimrc @@ -54,6 +54,8 @@ let g:syntastic_auto_loc_list = 2 let g:syntastic_check_on_open = 0 let g:syntastic_check_on_wq = 0 let g:syntastic_javascript_checkers = ['eslint'] +let g:syntastic_python_python_exec = '/usr/bin/python3' +let g:syntastic_python_checkers = ['flake8'] " Syntastic C++11 let g:syntastic_cpp_compiler = 'g++'