alias
alias copied to clipboard
[Feature Request] Check if shell is Bash or ZSH. Store and source accordingly.
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
Why not create a PR? I don't actively work on this project anymore but I would be happy to merge and create a release for you :)
Sure, will. 😊