From a50e5d21b0430a734929bc17017cc8c394b25524 Mon Sep 17 00:00:00 2001 From: RATDAD Date: Wed, 17 Dec 2025 19:53:38 -0500 Subject: Initial Commit --- .bashrc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .bashrc (limited to '.bashrc') diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..06c3009 --- /dev/null +++ b/.bashrc @@ -0,0 +1,18 @@ +# .bashrc +# Source global definitions +[ -f /etc/bashrc ] && . /etc/bashrc + +# User-specific PATH +case ":$PATH:" in + *":$HOME/.local/bin:"*|*":$HOME/bin:"*) ;; + *) PATH="$HOME/.local/bin:$HOME/bin:$PATH" ;; +esac +export PATH + +# Load modular bash configs +if [ -d "$HOME/.bashrc.d" ]; then + for rc in "$HOME/.bashrc.d"/*.bashrc; do + [ -f "$rc" ] && . "$rc" + done +fi +unset rc -- cgit v1.2.3-70-g09d2