Skip to content

Instantly share code, notes, and snippets.

@deHelden
Created April 2, 2020 11:37
Show Gist options
  • Save deHelden/814a6bde7dfc0c3e8ffd028f65970a76 to your computer and use it in GitHub Desktop.
Save deHelden/814a6bde7dfc0c3e8ffd028f65970a76 to your computer and use it in GitHub Desktop.
Separate .zshrc file for aliases and exports
# 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