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