diff options
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 |