# vi: ft=bash if [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then . "$(brew --prefix)/share/bash-completion/bash_completion" fi if command -v kubectl > /dev/null 2>&1; then source <(kubectl completion bash) fi if command -v helm > /dev/null 2>&1; then source <(helm completion bash) fi