moved python above vim, since YouCompleteMe (vim plugin) requires python
This commit is contained in:
parent
943448c457
commit
2e8aef8e14
1 changed files with 4 additions and 4 deletions
|
@ -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 &&
|
||||
|
|
Loading…
Reference in a new issue