From a11332626f9194bd3b3ecb57a47ccb93906bbd07 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Mon, 24 Mar 2025 16:53:58 +0100 Subject: [PATCH] feat: source .bashrc.local if it exists for additional configuration --- .bashrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bashrc b/.bashrc index 819cada..7a7fe02 100644 --- a/.bashrc +++ b/.bashrc @@ -153,6 +153,11 @@ if [[ -f "${HOME}/.nix-profile/share/blesh/ble.sh" ]]; then bind -x '"\C-r": fzf_history_search' fi +# In case a basrc.local exists, source it +if [ -f $HOME/.bashrc.local ]; then + source $HOME/.bashrc.local +fi + # Display a welcome message for interactive shells if [ -t 1 ]; then dotf hello