comparison vim/vimrc @ 305:a333541a5c74

Syntastic config changes.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 29 Jul 2015 00:47:48 -0700
parents 50fbd059a6a1
children 7a47a1cc8687
comparison
equal deleted inserted replaced
304:50fbd059a6a1 305:a333541a5c74
253 let g:gutentags_options_file = s:vim_home.'/ctagsrc' 253 let g:gutentags_options_file = s:vim_home.'/ctagsrc'
254 254
255 " }}} 255 " }}}
256 256
257 " Syntastic {{{ 257 " Syntastic {{{
258
259 let g:syntastic_auto_loc_list = 1
260 let g:syntastic_check_on_open = 1
261 let g:syntastic_check_on_wq = 0
258 262
259 " flake8 includes pyflakes, pep8, and mccabe 263 " flake8 includes pyflakes, pep8, and mccabe
260 " I could maybe replace pyflakes with frosted? 264 " I could maybe replace pyflakes with frosted?
261 let g:syntastic_python_checkers = ['flake8'] ", 'pylint'] 265 let g:syntastic_python_checkers = ['flake8'] ", 'pylint']
262 let g:syntastic_python_python_exec = 'python3' 266 let g:syntastic_python_python_exec = 'python3'