summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorRATDAD <lambda@disroot.org>2025-12-17 19:53:38 -0500
committerRATDAD <lambda@disroot.org>2025-12-17 19:53:38 -0500
commita50e5d21b0430a734929bc17017cc8c394b25524 (patch)
tree8a61bac5b36ca8725f3fdf64d30073b081c7d643 /.bashrc
downloadrds-platform-a50e5d21b0430a734929bc17017cc8c394b25524.tar.gz
rds-platform-a50e5d21b0430a734929bc17017cc8c394b25524.tar.bz2
rds-platform-a50e5d21b0430a734929bc17017cc8c394b25524.zip
Initial Commit
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc18
1 files changed, 18 insertions, 0 deletions
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