Last active
February 1, 2020 01:11
-
-
Save lucasdaiki/0ec4346175e5503cd5945c576a901309 to your computer and use it in GitHub Desktop.
Startup env script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install vim; | |
sudo apt-get install git; | |
sudo apt-get install terminator; | |
sudo apt-get install zsh; | |
curl -L http://install.ohmyz.sh | sh; | |
chsh -s $(which zsh); | |
sudo apt-get install curl; | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash; | |
sudo apt-get install code; | |
sudo apt-get -y install python-pip; | |
pip install --upgrade pip; | |
sudo apt-get install python3-dev; | |
# Docker | |
wget -qO- https://get.docker.com/ | sh; | |
sudo usermod -aG docker $(whoami); | |
sudo pip install docker-compose; | |
# https://macpaw.com/cleanmymac | |
# DBeaver | |
# OpenVPN |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment