From e32097b952425786e16344979c6bed0e3bda1add Mon Sep 17 00:00:00 2001 From: Tony Tkacik Date: Wed, 29 Jan 2014 16:51:41 +0000 Subject: [PATCH] Updated bashrc to support local aliases in .bash_local_aliases. Signed-off-by: Tony Tkacik --- bashrc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bashrc b/bashrc index 347417b..b40040d 100755 --- a/bashrc +++ b/bashrc @@ -102,7 +102,15 @@ fi if [ -f ~/.bash_variables ]; then . ~/.bash_variables fi + +if [ -f ~/.bash_local_aliases ]; then + . ~/.bash_local_aliases +fi +if [ -f ~/.bash_local_variables ]; then + . ~/.bash_local_variables +fi + # enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile # sources /etc/bash.bashrc). @@ -125,4 +133,4 @@ PS1="$PS1\$(parse_git_branch)" ## Finalizing section -PS1="$PS1\$ "; \ No newline at end of file +PS1="$PS1\$ ";