Windows Subsystem for Linux
setup WSL
- Run PowerShell as admin
$ Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
- Reboot the computer
- Download Ubuntu form Microsoft Store
- Install and set username and password
setup ZSH
$ sudo apt-get update
$ sudo apt-get install zsh
$ which zsh
/usr/bin/zsh
$ chsh -s /usr/bin/zsh
setup Oh My ZSH
$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Edit
~/.zshrcto change theme and add plugins.
ZSH_THEME="ys"
plugins=(
git
npm
node
sudo
)