From bd8919afb109efa0a92def766aca81f1e2e146fa Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sat, 14 Jun 2025 10:12:33 +0530 Subject: Update neovim, neomutt, and shell configurations --- src/config/files/shell/bashrc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/config/files/shell/bashrc (limited to 'src/config/files/shell/bashrc') diff --git a/src/config/files/shell/bashrc b/src/config/files/shell/bashrc new file mode 100644 index 0000000..2161b13 --- /dev/null +++ b/src/config/files/shell/bashrc @@ -0,0 +1,16 @@ +# .bashrc + +# Source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc +fi + +# User specific aliases and functions +if [ -d ~/.bashrc.d ]; then + for rc in ~/.bashrc.d/*; do + if [ -f "$rc" ]; then + . "$rc" + fi + done +fi +unset rc -- cgit