Skip to content

Instantly share code, notes, and snippets.

@xdevmaycry
Last active May 24, 2019 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xdevmaycry/1449d5667278e0a08b14413c5ee7831c to your computer and use it in GitHub Desktop.
Save xdevmaycry/1449d5667278e0a08b14413c5ee7831c to your computer and use it in GitHub Desktop.
WSL aka Windows Subsystem for Linux
## To make sure ~/.bashrc gets autoladed when launching WSL
if [[ -f ~/.bashrc ]] ; then
. ~/.bashrc
fi
## To make sure ~/.zshrc gets autoladed when launching WSL
if [[ -f ~/.zshrc ]] ; then
. ~/.zshrc
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment