Created
May 2, 2014 16:20
-
-
Save mkalygin/b3e9de184d83a29a6cd0 to your computer and use it in GitHub Desktop.
Install zsh on Elementary OS.
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
# Source: http://choyan.me/oh-my-zsh-elementaryos/ | |
sudo apt-get update && sudo apt-get install -y curl vim git zsh | |
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | bash | |
sudo chsh -s $(which zsh) $(whoami) |
Still works in Elementary OS 5.1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just what I needed :)
${whoami} fixed an issue I had with $PATH variables not being brought over from my bash setup when I followed this gist , many thanks!