From a98c3b726ecb302d712779eb38fa63d54ad01ec0 Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 16 Sep 2024 08:45:52 -0400 Subject: [PATCH] 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 --- bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bashrc b/bashrc index 38d7d83..3ae6f41 100644 --- a/bashrc +++ b/bashrc @@ -18,3 +18,6 @@ for file in ~/.bashrc.d/*.bashrc; do source "$file" done +if [ -e ~/.local.bashrc ]; then + source ~/.local.bashrc +fi