moved python above vim, since YouCompleteMe (vim plugin) requires python

This commit is contained in:
Tobias Schmidl 2018-03-07 16:28:41 +01:00
parent 943448c457
commit 2e8aef8e14

View file

@ -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 - curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo apt-get install -y nodejs 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 # vim related
mkdir -p $HOME/.vim/autoload $HOME/.vim/bundle $HOME/.config/nvim && \ 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 && 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 && curl -RLSso $HOME/.config/nvim/init.vim https://github.com/schtobia/systemsettings/raw/master/init.vim &&
nvim +PluginInstall +qall 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 # zsh related
mkdir -p $HOME/.local/lib/zsh/custom-zsh && mkdir -p $HOME/.local/lib/zsh/custom-zsh &&
git clone https://github.com/zsh-users/antigen.git $HOME/.local/lib/zsh/antigen && git clone https://github.com/zsh-users/antigen.git $HOME/.local/lib/zsh/antigen &&