9674873091
Moved appearance settings to plugin/settings/skwp-appearance.vim
8 lines
195 B
VimL
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
|