Not sure what I did here, but apparently it was something...

This commit is contained in:
David Thurstenson 2016-02-12 11:23:44 -06:00
parent f1008f3bbe
commit 94a703da4d
1 changed files with 2 additions and 1 deletions

3
.vimrc
View File

@ -24,8 +24,9 @@ set backspace=indent,eol,start
if has("vms")
set nobackup " do not keep a backup file, use versions instead
else
set dir=~/.vim/tmp " Set the swapfile location elsewhere to reduce breadcrumbs.
set backup " keep a backup file (restore to previous version)
set backupdir=~/.vim/tmp " keep backup files in a specific directory instead of the same dir as the file being edited
set backupdir=~/.vim/tmp " keep backup (.swp) files in a specific directory instead of the same dir as the file being edited
set undofile " keep an undo file (undo changes after closing)
set undodir=~/.vim/undo " keep undo files in a specific directory instead of the same directory as the file
endif