Created
February 5, 2017 17:30
-
-
Save neanias/0e5ef0a69295f6c6b303028b3fd1075a to your computer and use it in GitHub Desktop.
This file contains 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
# use zsh instead of bash | |
case $- in | |
*i*) | |
if [ $(which zsh 2>/dev/null) ]; then | |
export SHELL=$(which zsh) | |
export BASH="" | |
exec zsh | |
fi | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment