Added mkdir to get vim undofiles working correctly

Seems vim won't create the directory, expects it to be there (weak sauce!)
This commit is contained in:
Joshua Sherman 2014-01-03 18:27:30 -05:00
parent 2cfff2313b
commit 2b1b7ab64c

3
setup
View file

@ -125,6 +125,9 @@ then
rm ~/.vimrc
fi
# Gets our undofiles working
[ -d ~/.vim/undofiles ] || mkdir ~/.vim/undofiles
ln -s $DOTFILES/vim/vimrc ~/.vimrc
# Gets our Vundle on!