summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorRATDAD <lambda@disroot.org>2025-12-24 13:41:34 -0500
committerRATDAD <lambda@disroot.org>2025-12-24 13:41:34 -0500
commitfe7d43ac31f7b9fe0c9be9355d35fa2ee57bd46f (patch)
tree081c5a35976fec3833f4673a4439e7d9289c8d05 /.bashrc
parentaf887c36d36bbeae04cc1576587758fb18ee1ef2 (diff)
downloadrds-platform-fe7d43ac31f7b9fe0c9be9355d35fa2ee57bd46f.tar.gz
rds-platform-fe7d43ac31f7b9fe0c9be9355d35fa2ee57bd46f.tar.bz2
rds-platform-fe7d43ac31f7b9fe0c9be9355d35fa2ee57bd46f.zip
Suppress edge memory limit warning && simplify bindmounts for cgit
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc18
1 files changed, 0 insertions, 18 deletions
diff --git a/.bashrc b/.bashrc
deleted file mode 100644
index 06c3009..0000000
--- a/.bashrc
+++ /dev/null
@@ -1,18 +0,0 @@
-# .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