Added support for custom aliases and functions

This commit is contained in:
Chris Ng 2013-12-01 10:45:38 -08:00
commit 8c4322c6e0

View file

@ -45,3 +45,10 @@ plugins=(git)
source $ZSH/oh-my-zsh.sh
# Customize to your needs...
if [ -f ~/.aliases ] ; then
source ~/.aliases
fi
if [ -f ~/.functions ] ; then
source ~/.functions
fi