add optional extra local machine bashrc config support

the idea being, any local bashrc configuration that i don't want
committed into this repo for all other machines i use this repo with
to have, can be added to this local file
This commit is contained in:
Gered 2024-09-16 08:45:52 -04:00
parent 6b8d40b9eb
commit a98c3b726e

3
bashrc
View file

@ -18,3 +18,6 @@ for file in ~/.bashrc.d/*.bashrc; do
source "$file" source "$file"
done done
if [ -e ~/.local.bashrc ]; then
source ~/.local.bashrc
fi