Files
DotfilesOld/vim/ftplugin/python.vim
2010-04-02 17:54:50 +02:00

12 lines
240 B
VimL

"PEP 8 Friendly
setlocal tabstop=4
setlocal softtabstop=4
setlocal shiftwidth=4
setlocal textwidth=80
setlocal smarttab
setlocal expandtab
setlocal smartindent
" Code completion
autocmd FileType python set omnifunc=pythoncomplete#Complete