From 0ce1f753c24165ec2b15d8c8d28af4934ec0c417 Mon Sep 17 00:00:00 2001 From: Flo Date: Thu, 8 Sep 2016 19:30:17 +0200 Subject: [PATCH] load aliases if exists --- zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc b/zshrc index e6022aa..c4ebecf 100644 --- a/zshrc +++ b/zshrc @@ -97,3 +97,8 @@ if [[ -f $HOME/.zshrc.local ]]; then source ~/.zshrc.local fi +# load local aliases if exists +if [[ -f $HOME/.bash_aliases ]]; then + source ~/.bash_aliases +fi +