14 lines
637 B
VimL
14 lines
637 B
VimL
set encoding=utf-8
|
|
set directory=~/.vim/swp " *.swp files will end up here
|
|
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
" When editing a file, always jump to the last known cursor position.
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
autocmd BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g`\"" | endif
|
|
|
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
" Delete trailing whitespaces on saving a file
|
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
autocmd BufWritePre * :%s/\s\+$//e
|