comparison vim/vimrc @ 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 073e7e47dbeb
comparison
equal deleted inserted replaced
218:b87391429145 219:738c1a3ad786
249 249
250 " }}} 250 " }}}
251 251
252 " Syntastic {{{ 252 " Syntastic {{{
253 253
254 " Use `pyflakes` with `syntastic`. 254 " flake8 includes pyflakes, pep8, and mccabe
255 "let g:syntastic_python_checkers = ['pyflakes'] 255 " I could maybe replace pyflakes with frosted?
256 let g:syntastic_python_checkers = ['flake8', 'pylint']
257 let g:syntastic_python_python_exec = 'python3'
258
259 " }}}
260
261 " Supertab {{{
262
263 let g:SuperTabDefaultCompletionType = "<c-n>"
264 let g:SuperTabLongestHighlight = 1
265 let g:SuperTabCrMapping = 1
256 266
257 " }}} 267 " }}}
258 268
259 " Lawrencium {{{ 269 " Lawrencium {{{
260 270