11 lines
231 B
Bash
11 lines
231 B
Bash
# ~/.bash_completion - Custom bash auto completions
|
|
|
|
shopt -s nullglob
|
|
|
|
# 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
|
|
|