Python Vim インデントを設定。

filetype plugin on
autocmd FileType python setl autoindent
autocmd FileType python setl smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class
autocmd FileType python setl expandtab tabstop=4 shiftwidth=4 softtabstop=4

Pythonのファイルのみに、tabでスペースが4つ入るように設定。 if,elif 等のキーワードには自動インデントする。