dotfiles-ancient/.vim/ftplugin/python.vim

12 lines
251 B
VimL

" Enable folding on indent
set foldmethod=indent
set foldlevel=99
au BufNewFile,BufRead *.py
\ set tabstop=4
\ set softtabstop=4
\ set shiftwidth=4
\ set textwidth=79
\ set expandtab
\ set autoindent
\ set fileformat=unix