dotfiles/bash/completion

6 lines
200 B
Bash

bash_completion_file="$HOME/.nix-profile/share/bash-completion/bash_completion"
if [[ $BASH_VERSION != 3.* && -f "$bash_completion_file" ]]; then
source "$bash_completion_file"
fi
# vim: ft=bash