Skip to content

Instantly share code, notes, and snippets.

@humbertodias
Created October 21, 2018 12:02
Show Gist options
  • Save humbertodias/adfe88157ec20d635b7f5ce45f18b9f7 to your computer and use it in GitHub Desktop.
Save humbertodias/adfe88157ec20d635b7f5ce45f18b9f7 to your computer and use it in GitHub Desktop.
Install zsh + ohmyzsh on Ubuntu
# Dep
sudo apt install fonts-powerline zsh
# OhMyZsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# Change default shell
sudo usermod --shell /bin/zsh $USER
or
chsh -s /bin/zsh $USER
# Ref
https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment