Skip to content

Instantly share code, notes, and snippets.

@hnrchrdl
Last active September 22, 2018 12:31
Show Gist options
  • Save hnrchrdl/900244dafb7486267ea5b3063247c0f8 to your computer and use it in GitHub Desktop.
Save hnrchrdl/900244dafb7486267ea5b3063247c0f8 to your computer and use it in GitHub Desktop.
=== install deps ===
sudo apt update
sudo apt install zsh fonts-powerline wget git
=== change default shell ===
chsh -s /bin/zsh
=== (optional) verify installation ===
which zsh -> 'usr/bin/zsh'
echo $SHELL -> 'usr/bin/zsh'
=== install oh-my-zsh and copy config ===
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
cp ~/.zshrc ~/.zshrc.orig (optional backup)
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
source ~/.zshrc
=== use agnoster theme ===
nano ~/.zshrc
set ZSH_THEME="agnoster"
source ~/.zshrc
----------
https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/)
https://github.com/robbyrussell/oh-my-zsh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment