You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
ZSH support can be added out of the box if you check for the active shell before-hand.
This should tell you what shell is active:
if ! [ -z ${ZSH_VERSION+x} ]; then shellrc = "~/.zshrc" else shellrc = "~/.bashrc" fi
The text was updated successfully, but these errors were encountered:
qumberrizvi
changed the title
Check if shell is Bash or ZSH. Store and source accordingly.
[Feature Request] Check if shell is Bash or ZSH. Store and source accordingly.
Aug 6, 2020
ZSH support can be added out of the box if you check for the active shell before-hand.
This should tell you what shell is active:
if ! [ -z ${ZSH_VERSION+x} ]; then
shellrc = "~/.zshrc"
else
shellrc = "~/.bashrc"
fi
The text was updated successfully, but these errors were encountered: