Skip to content

Instantly share code, notes, and snippets.

@minivan
Created September 19, 2012 09:23
Show Gist options
  • Save minivan/3748668 to your computer and use it in GitHub Desktop.
Save minivan/3748668 to your computer and use it in GitHub Desktop.
Ubuntu dev env setup
# 1. install ZSH
echo "Installing ZSH..."
sudo apt-get update && sudo apt-get install zsh
# 2. install ohmyzsh
echo "Installing Oh My ZSH"
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
# 3. change shell
chsh -s `which zsh`
# 4. Restart
echo "The system will restart in 3 seconds"
sleep(3)
sudo shutdown -r 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment