From e511b627bc9397a9eeafe25dd627567c1e3fac06 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Wed, 22 Jun 2016 14:02:38 -0400 Subject: [PATCH 1/3] 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 From c805bbfd6adc77262dbb8b4a0e5b168bfec6f6dc Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Wed, 22 Jun 2016 14:03:43 -0400 Subject: [PATCH 2/3] godddd --- .vim/bundle/Vundle.vim | 1 - 1 file changed, 1 deletion(-) delete mode 160000 .vim/bundle/Vundle.vim diff --git a/.vim/bundle/Vundle.vim b/.vim/bundle/Vundle.vim deleted file mode 160000 index 4984767..0000000 --- a/.vim/bundle/Vundle.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 4984767509e3d05ca051e253c8a8b37de784be45 From cfcec11dd7e02f644af8abf7f57c092cf5c4af6a Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Sun, 19 Mar 2017 18:33:01 -0500 Subject: [PATCH 3/3] only clone vundle once please --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 1778fae..b166636 100755 --- a/install.sh +++ b/install.sh @@ -23,8 +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 + +# setup Vundle +echo "cloning Vundle" +git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim