Last active
November 16, 2019 13:25
-
-
Save avatsaev/b3caa88f5e090ace188e95ca282f8032 to your computer and use it in GitHub Desktop.
This file contains 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 update | |
sudo apt install build-essential curl wget git zsh ffmpeg | |
curl -fsSL https://get.docker.com | sh | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
curl -sSL https://gist.githubusercontent.com/avatsaev/39526caf8f5dc70b292427f9caeaad26/raw/aac723ead2c41962d592275aa56151fe7ae3da16/.zshrc-ubuntu > ~/.zshrc | |
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions | |
sudo usermod -aG docker $USER | |
zsh | |
read -p "Git username:" username | |
git config --global user.name $username | |
read -p "Git email:" email | |
git config --global user.email $email | |
nvm install 10 | |
nvm alias default 10 | |
npm i -g @angular/cli | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment