Do not use vim under cygwin
This commit is contained in:
parent
d1cb209607
commit
1f8566dba5
2 changed files with 11 additions and 2 deletions
|
@ -99,7 +99,9 @@ if [[ -z $NORUST ]]; then
|
||||||
cargo install -f rustfmt
|
cargo install -f rustfmt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "\n" | vim +PluginInstall +qa
|
if [[ -z $NOVIM ]]; then
|
||||||
|
echo "\n" | vim +PluginInstall +qa
|
||||||
|
fi
|
||||||
|
|
||||||
cd "$DIR/.vim/bundle/YouCompleteMe/"
|
cd "$DIR/.vim/bundle/YouCompleteMe/"
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
|
@ -8,5 +8,12 @@ git clone "$OUTER_CLONE" "$DOTFILES_PATH"
|
||||||
cd "$DOTFILES_PATH"
|
cd "$DOTFILES_PATH"
|
||||||
git remote set-url origin git@github.com:cyplo/dotfiles.git
|
git remote set-url origin git@github.com:cyplo/dotfiles.git
|
||||||
git checkout $branch
|
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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue