From 288ab24b77ab4f5e5bd21d8201ac320f32f94a71 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sun, 2 Jun 2019 00:13:52 -0400 Subject: [PATCH] [install] install plugins on Vim setup My current Vim setup has some of my "core" plugins that I use on all machines as submodules. These should be downloaded through the dotfiles setup by doing a clone with the --recurse-submodules flag. --- bin/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install.sh b/bin/install.sh index 65d6158..3a02903 100755 --- a/bin/install.sh +++ b/bin/install.sh @@ -61,7 +61,7 @@ if [ -d $DOTVIM ]; then warn_msg "Backing up old $DOTVIM to $BACKUP" fi -git clone https://github.com/akarle/dotvim.git $DOTVIM +git clone --recurse-submodules https://github.com/akarle/dotvim.git $DOTVIM success_msg "Successfully cloned dotvim to $DOTVIM. Woot!" printf "\n\n" -- libgit2 0.28.4