diff options
author | Tyler Davis <tyler@gluecode.net> | 2023-09-01 08:48:09 -0700 |
---|---|---|
committer | Tyler Davis <tyler@gluecode.net> | 2023-09-01 08:48:09 -0700 |
commit | 5bbe41709bc7aacd6ad5989f8e376600253e3549 (patch) | |
tree | 7e883c56cf1f27e08224c5391c9d897f8ef693b6 /.bashrc | |
parent | ee32885d090bdfe161f7bb05b77cca0ee67046f1 (diff) | |
download | dotfiles-5bbe41709bc7aacd6ad5989f8e376600253e3549.tar.gz dotfiles-5bbe41709bc7aacd6ad5989f8e376600253e3549.zip |
sh: fix bash completion with git
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,8 @@ if [ -f "/etc/bash/bash_completion.sh" ]; then source /etc/bash/bash_completion.sh; fi +if [ -f "$HOME/.config/git-completion.sh" ]; then source $HOME/.config/git-completion.sh; fi + # The next line updates PATH for the Google Cloud SDK. if [ -f "$HOME/.gcloud/google-cloud-sdk/path.bash.inc" ]; then . "$HOME/.gcloud/google-cloud-sdk/path.bash.inc"; fi # The next line enables shell command completion for gcloud. |