Added the possibility to have an own .bashrc.local

This commit is contained in:
mnlwldr 2022-03-25 09:05:09 +01:00 committed by Koichi Murase
parent 4bab69d1cd
commit 177864fc5c
2 changed files with 4 additions and 2 deletions

View File

@ -90,6 +90,10 @@ if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
if [ -f ~/.bashrc.local ]; then
. ~/.bashrc.local
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).

View File

@ -116,5 +116,3 @@ source "$OSH"/oh-my-bash.sh
# Example aliases
# alias bashconfig="mate ~/.bashrc"
# alias ohmybash="mate ~/.oh-my-bash"
[ -f ~/.bashrc.local ] && . ~/.bashrc.local