13 lines
361 B
VimL
13 lines
361 B
VimL
setlocal tabstop=4
|
|
setlocal softtabstop=4
|
|
setlocal shiftwidth=4
|
|
setlocal expandtab
|
|
setlocal autoindent
|
|
setlocal smartindent
|
|
setlocal cinwords=if,elif,else,for,while,try,except,finally,def,class
|
|
if !exists("stripwhitespace_autocommand")
|
|
let stripwhitespace_autocommand = 1
|
|
aug stripwhitespace
|
|
autocmd stripwhitespace BufWritePre <buffer> %s/\s\+$//e
|
|
endif
|