Skip to content

Instantly share code, notes, and snippets.

@jansilvo
Last active December 13, 2018 10:03
Show Gist options
  • Save jansilvo/302c3e86c78d1ed58194b66f993f0382 to your computer and use it in GitHub Desktop.
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
# 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