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:
parent
b24d0ef48b
commit
e32097b952
1 changed files with 9 additions and 1 deletions
10
bashrc
10
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\$ ";
|
||||
PS1="$PS1\$ ";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue