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 +