Last active
December 13, 2018 10:03
-
-
Save jansilvo/302c3e86c78d1ed58194b66f993f0382 to your computer and use it in GitHub Desktop.
[zshrc aliases and functions config]Move aliases and functions in separate files #zshrc #ohmyzsh
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
# Load aliases from .zsh_aliases. | |
if [ -f $HOME/.zsh_aliases ]; then | |
. $HOME/.zsh_aliases | |
fi | |
# Load functions from .zsh_functions. | |
if [ -f $HOME/.zsh_functions ]; then | |
. $HOME/.zsh_functions | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment