This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible " be iMproved | |
| filetype off " required! | |
| autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class | |
| autocmd BufRead *.py set nocindent | |
| autocmd BufWritePre *.py normal m`:%s/\s\+$//e `` | |
| " Disable pylint checking every save | |
| let g:pymode_lint_write = 0 |