diff --git a/stow/shell/dot-config/bash_completion b/stow/shell/dot-config/bash_completion index ce2d1072224..bed642af4a9 100644 --- a/stow/shell/dot-config/bash_completion +++ b/stow/shell/dot-config/bash_completion @@ -1,16 +1,6 @@ #!/usr/bin/env bash # the shebang statement above is only here to allow linting this file -# Add tab completion for Docker and Docker Compose -if [[ -d "/Applications/Docker.app/Contents/Resources/etc/" ]]; then - if [[ -f "/Applications/Docker.app/Contents/Resources/etc/docker.bash-completion" ]]; then - source "/Applications/Docker.app/Contents/Resources/etc/docker.bash-completion" - fi - if [[ -f "/Applications/Docker.app/Contents/Resources/etc/docker-compose.bash-completion" ]]; then - source "/Applications/Docker.app/Contents/Resources/etc/docker-compose.bash-completion" - fi -fi - # Enable tab completion for `g` by marking it as an alias for `git` if type __git_complete &>/dev/null; then __git_complete g __git_main