Created
April 2, 2020 11:37
-
-
Save deHelden/814a6bde7dfc0c3e8ffd028f65970a76 to your computer and use it in GitHub Desktop.
Separate .zshrc file for aliases and exports
This file contains hidden or 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
# Source exports | |
if [ -f ~/.zsh_exports ]; then | |
source ~/.zsh_exports | |
fi | |
# Source aliases | |
if [ -f ~/.zsh_aliases ]; then | |
source ~/.zsh_aliases | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment