# vi: ft=bash if command -v brew &> /dev/null; then if [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then . "$(brew --prefix)/share/bash-completion/bash_completion" fi 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