Use correct syntax

This commit is contained in:
Sonny Bakker 2017-10-23 21:25:14 +02:00
parent 3bfd97c7b0
commit 883a07c08a

View file

@ -17,15 +17,20 @@ autocmd BufWritePre * :%s/\s\+$//e
au BufWinLeave *.py mkview au BufWinLeave *.py mkview
au BufWinEnter *.py silent loadview au BufWinEnter *.py silent loadview
au BufNewFile,BufRead *.py; au BufNewFile,BufRead *.py
\ set tabstop=4 \ set tabstop=4 |
\ set softtabstop=4 \ set softtabstop=4 |
\ set shiftwidth=4 \ set shiftwidth=4 |
\ set textwidth=79 \ set textwidth=79 |
\ set expandtab \ set expandtab |
\ set autoindent \ set autoindent |
\ set fileformat=unix \ set fileformat=unix
au BufNewFile,BufRead *.js, *.html, *.css
\ set tabstop=2 |
\ set softtabstop=2 |
\ set shiftwidth=2
" fold methods based on indents " fold methods based on indents
" zo to open folds, zc to close " zo to open folds, zc to close
set foldmethod=indent set foldmethod=indent