From e511b627bc9397a9eeafe25dd627567c1e3fac06 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Wed, 22 Jun 2016 14:02:38 -0400 Subject: [PATCH] clone vundle too --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index 527875e..1778fae 100755 --- a/install.sh +++ b/install.sh @@ -23,4 +23,8 @@ for FNAME in $INCLUDE; do # symlink in the versioned dotfiles. echo "ln $BASE_DIR/$FNAME" "$HOME/$FNAME" ln -sf "$BASE_DIR/$FNAME" "$HOME/$FNAME" + + # setup Vundle + echo "cloning Vundle" + git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim done