From b07de59e015b89f93c3f5064d9863286440d3fd9 Mon Sep 17 00:00:00 2001 From: Raul Benencia Date: Fri, 3 Feb 2023 10:30:09 -0800 Subject: bash: load parts from ~/.bash.d/ --- .bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.bashrc') diff --git a/.bashrc b/.bashrc index 28e96c0..d170ef9 100644 --- a/.bashrc +++ b/.bashrc @@ -45,9 +45,9 @@ if [ -f /usr/share/doc/fzf/examples/key-bindings.bash ]; then . /usr/share/doc/fzf/examples/key-bindings.bash fi -# enable local completion -if [ -d ~/.bash_completion.d/ ]; then - for f in $(find ~/.bash_completion.d/ -type f); do +# enable local config parts +if [ -d ~/.bash.d/ ]; then + for f in $(find ~/.bash.d/ -type f); do . $f done fi -- cgit v1.2.3