Last active
September 22, 2018 12:31
-
-
Save hnrchrdl/900244dafb7486267ea5b3063247c0f8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
=== 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