diff options
-rw-r--r-- | .bash_profile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile index dbc60d3..3f824a0 100644 --- a/.bash_profile +++ b/.bash_profile @@ -28,6 +28,8 @@ done; # Add tab completion for many Bash commands if which brew > /dev/null && [ -f "$(brew --prefix)/etc/bash_completion" ]; then source "$(brew --prefix)/etc/bash_completion"; +elif [ -f /etc/bash_completion ]; then + source /etc/bash_completion; fi; # Enable tab completion for `g` by marking it as an alias for `git` |