dotar/vim/plugin/settings/persistent-undo.vim

8 lines
194 B
VimL
Raw Normal View History

" persistent undos - undo after you re-open the file
" but this gives warnings under command line vim
" use only in macvim
if v:version > '702'
set undodir=~/.vim/backups
set undofile
endif