From 8c4322c6e078e821823f29c674ebc57ce8dbc4a9 Mon Sep 17 00:00:00 2001 From: Chris Ng Date: Sun, 1 Dec 2013 10:45:38 -0800 Subject: [PATCH] Added support for custom aliases and functions --- templates/zshrc.zsh-template | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 1dfb6998c..ff78c82c0 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -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