Do not use vim under cygwin

This commit is contained in:
Cyryl Płotnicki-Chudyk 2016-08-05 09:56:31 +02:00
parent d1cb209607
commit 1f8566dba5
2 changed files with 11 additions and 2 deletions

View file

@ -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

View file

@ -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