commit 288ab24b77ab4f5e5bd21d8201ac320f32f94a71 (patch)
parent 9396fbc1627b07e604a7eca52477da722fee32e4
Author: Alex Karle <alex@karle.co>
Date: Sun, 2 Jun 2019 00:13:52 -0400
[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.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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"