From 48d0015dde33de7b90c7b327e9f1e6107f9df902 Mon Sep 17 00:00:00 2001 From: plrectco Date: Thu, 9 May 2019 16:56:34 -0700 Subject: [PATCH] set up ycm --- getmyplugins.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/getmyplugins.sh b/getmyplugins.sh index ec020fe3..f3cf6287 100644 --- a/getmyplugins.sh +++ b/getmyplugins.sh @@ -6,3 +6,11 @@ while IFS='' read -r line || [[ -n "$line" ]]; do git clone $line done < "$vimdir/mypluginList" popd > /dev/null + +if [ -d $vimdir/my_plugins/YouCompleteMe ]; then + pushd $vimdir/my_plugins/YouCompleteMe > /dev/null + git submodule update --init --recursive + python install.py + popd > /dev/null +fi +