# HG changeset patch # User Ludovic Chabant # Date 1410502499 25200 # Node ID 738c1a3ad7867047dd8faa473f56d1c20128c79d # Parent b873914291450cf0b8c181efb0e8c4046aa7ce2a Update Python settings for Syntastic, new settings for Supertab. diff -r b87391429145 -r 738c1a3ad786 vim/vimrc --- a/vim/vimrc Thu Sep 11 23:14:29 2014 -0700 +++ b/vim/vimrc Thu Sep 11 23:14:59 2014 -0700 @@ -251,8 +251,18 @@ " Syntastic {{{ -" Use `pyflakes` with `syntastic`. -"let g:syntastic_python_checkers = ['pyflakes'] +" flake8 includes pyflakes, pep8, and mccabe +" I could maybe replace pyflakes with frosted? +let g:syntastic_python_checkers = ['flake8', 'pylint'] +let g:syntastic_python_python_exec = 'python3' + +" }}} + +" Supertab {{{ + +let g:SuperTabDefaultCompletionType = "" +let g:SuperTabLongestHighlight = 1 +let g:SuperTabCrMapping = 1 " }}}