dotar/vim/plugin/settings/persistent-undo.vim
yan 9674873091 Vimrc cleanup - in clean easy to read sections
Moved appearance settings to plugin/settings/skwp-appearance.vim
2011-12-17 14:12:31 -08:00

8 lines
195 B
VimL

" persistent undos - undo after you re-open the file
" but this gives warnings under command line vim
" use only in macvim
if has('gui_running')
set undodir=~/.vim/backups
set undofile
endif