mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
10 lines
353 B
Bash
10 lines
353 B
Bash
# default bash autocompletion
|
|
bash_completion_file="/etc/bash_completion"
|
|
if which brew 2>/dev/null >/dev/null; then
|
|
bash_completion_file="`brew --prefix`$bash_completion_file"
|
|
fi
|
|
[[ -f $bash_completion_file ]] || unset bash_completion_file
|
|
[[ -n "$bash_completion_file" ]] && source "$bash_completion_file"
|
|
unset bash_completion_file
|
|
|
|
# vim: ft=sh
|