diff options
author | Raul Benencia <rul@kalgan.cc> | 2023-02-03 10:30:09 -0800 |
---|---|---|
committer | Raul Benencia <rul@kalgan.cc> | 2023-02-03 10:31:11 -0800 |
commit | b07de59e015b89f93c3f5064d9863286440d3fd9 (patch) | |
tree | 05a19167f70e83fd07e9c8e0bc1a73c01a6cca49 /.bashrc | |
parent | f0d83616a78458d1ca23b2bdf0e2773ab1ff4e5a (diff) |
bash: load parts from ~/.bash.d/
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |