# ~/.bash_completion - Custom bash auto completions

# Include all files from ~/.bash_completion.d/
if [[ -d ~/.bash_completion.d ]]; then
    for f in ~/.bash_completion.d/*; do
        [[ -f "$f" ]] && . "$f"
    done
fi
