https://github.com/toxblh/windows-wsl-install
Install WSL and configure it for frontend dev
https://github.com/toxblh/windows-wsl-install
Last synced: about 2 months ago
JSON representation
Install WSL and configure it for frontend dev
- Host: GitHub
- URL: https://github.com/toxblh/windows-wsl-install
- Owner: Toxblh
- Created: 2019-02-19T23:55:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-08T20:55:48.000Z (almost 7 years ago)
- Last Synced: 2025-01-07T09:36:16.761Z (over 1 year ago)
- Language: Shell
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Configure Windows WSL for Frontend Development
Location .zshrc in windows
Win+R > `%USERPROFILE%\AppData\Local\Packages\CanonicalGroupLimited.UbuntuonWindows_79rhkp1fndgsc\LocalState\rootfs\home`
next open `%UbuntuUser%\.zshrc`
Change bash to zsh
in bash `nano ~/.bashrc` or in the folder from the previous point
and put to top of the file
```shell
# Launch Zsh
if [ -t 1 ]; then
exec zsh
fi
```
Or simple
```shell
wget -O - https://raw.githubusercontent.com/Toxblh/windows-wsl-install/master/install.sh | sudo bash
```