Skip to content

Instantly share code, notes, and snippets.

@avatsaev
Last active November 16, 2019 13:25
Show Gist options
  • Save avatsaev/b3caa88f5e090ace188e95ca282f8032 to your computer and use it in GitHub Desktop.
Save avatsaev/b3caa88f5e090ace188e95ca282f8032 to your computer and use it in GitHub Desktop.
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