1
1
Fork 0
mirror of https://github.com/tonydamage/nux-env.git synced 2025-12-11 13:24:28 +01:00

Updated bashrc to support local aliases in .bash_local_aliases.

Signed-off-by: Tony Tkacik <tonydamage@gmail.com>
This commit is contained in:
Tony Tkáčik 2014-01-29 16:51:41 +00:00
parent b24d0ef48b
commit e32097b952

10
bashrc
View file

@ -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\$ ";
PS1="$PS1\$ ";