mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
13 lines
453 B
VimL
13 lines
453 B
VimL
" Move ~/.viminfo to XDG_CACHE_HOME
|
|
"set viminfofile=$XDG_CACHE_HOME/vim/viminfo
|
|
|
|
" Disable automatic commenting on newline
|
|
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
|
|
|
|
" Have Vim jump to the last position when reopening a file
|
|
autocmd BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
|
|
|
" Automatically deletes all trailing whitespace on save
|
|
autocmd BufWritePre * %s/\s\+$//e
|
|
|