changeset 219:738c1a3ad786

Update Python settings for Syntastic, new settings for Supertab.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 11 Sep 2014 23:14:59 -0700
parents b87391429145
children 1ba0daaa8e4e
files vim/vimrc
diffstat 1 files changed, 12 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 = "<c-n>"
+let g:SuperTabLongestHighlight = 1
+let g:SuperTabCrMapping = 1
 
 " }}}