From 2e8aef8e1494f8095ddaafd1d8d2583c2950738d Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Wed, 7 Mar 2018 16:28:41 +0100 Subject: [PATCH] moved python above vim, since YouCompleteMe (vim plugin) requires python --- bootstrap.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index f79a5ab..160fd8e 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -7,6 +7,10 @@ sudo -S bash -c "apt install bash-completion elinks git zsh curl neovim fortunes curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash - sudo apt-get install -y nodejs +# python3 related +sudo -S bash -c "curl --tlsv1.2 -RLfs https://bootstrap.pypa.io/get-pip.py | python2 &&\ + curl --tlsv1.2 -RLfs https://bootstrap.pypa.io/get-pip.py | python3" + # vim related mkdir -p $HOME/.vim/autoload $HOME/.vim/bundle $HOME/.config/nvim && \ git clone https://github.com/VundleVim/Vundle.vim.git $HOME/.vim/bundle/Vundle.vim && @@ -14,10 +18,6 @@ mkdir -p $HOME/.vim/autoload $HOME/.vim/bundle $HOME/.config/nvim && \ curl -RLSso $HOME/.config/nvim/init.vim https://github.com/schtobia/systemsettings/raw/master/init.vim && nvim +PluginInstall +qall -# python3 related -sudo -S bash -c "curl --tlsv1.2 -RLfs https://bootstrap.pypa.io/get-pip.py | python2 &&\ - curl --tlsv1.2 -RLfs https://bootstrap.pypa.io/get-pip.py | python3" - # zsh related mkdir -p $HOME/.local/lib/zsh/custom-zsh && git clone https://github.com/zsh-users/antigen.git $HOME/.local/lib/zsh/antigen &&