/
๐Ÿ˜Š

Setup Zsh

https://blog.joaograssi.com/windows-subsystem-for-linux-with-oh-my-zsh-conemu/
Command LineSetup
Table of contents
  • Setup in Window WSL
  • Setup in Mac

Setup in Window WSL

Install ZSH

bash
sudo apt-get install zsh

Install oh-my-zsh

bash
sudo apt-get install git
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
nano ~/.bashrc
shell
if test -t 1; then
exec zsh
fi

Changing the Theme of oh-my-zsh

shell
# Find and change this
ZSH_THEME="robbyrussell"
# To this
ZSH_THEME="agnoster"

Setup in Mac

Kelvin's Tech Notes