13 lines
362 B
VimL
13 lines
362 B
VimL
" Use 4 spaces for indentation
|
|
setlocal tabstop=4
|
|
setlocal shiftwidth=0
|
|
setlocal expandtab
|
|
" Delete all 4 spaces when pressing backspace
|
|
setlocal smarttab
|
|
" PEP-8 wants 79 as maximum line length
|
|
setlocal textwidth=79
|
|
" Lines with equal indent form a fold
|
|
set foldmethod=indent
|
|
" Open all folds after they were closed automatically by foldmethod=indent
|
|
normal zR
|