diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 91a862df..8fa2cf4b 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -99,7 +99,9 @@ if [[ -z $NORUST ]]; then cargo install -f rustfmt fi -echo "\n" | vim +PluginInstall +qa +if [[ -z $NOVIM ]]; then + echo "\n" | vim +PluginInstall +qa +fi cd "$DIR/.vim/bundle/YouCompleteMe/" git submodule update --init --recursive diff --git a/windows_cygwin/build_insider.sh b/windows_cygwin/build_insider.sh index af848088..ea349deb 100755 --- a/windows_cygwin/build_insider.sh +++ b/windows_cygwin/build_insider.sh @@ -8,5 +8,12 @@ git clone "$OUTER_CLONE" "$DOTFILES_PATH" cd "$DOTFILES_PATH" git remote set-url origin git@github.com:cyplo/dotfiles.git git checkout $branch -export DIR=$DOTFILES_PATH && NOSUDO=true DONT_CHANGE_SHELL=true NORUST=true $DIR/common/configure_fresh_system + +export NOSUDO=true +export DONT_CHANGE_SHELL=true +export NORUST=true +export NOVIM=true +export DIR=$DOTFILES_PATH + +$DIR/common/configure_fresh_system