diff options
-rw-r--r-- | .zsh/zshrc/99_gcloud | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.zsh/zshrc/99_gcloud b/.zsh/zshrc/99_gcloud new file mode 100644 index 0000000..138bba8 --- /dev/null +++ b/.zsh/zshrc/99_gcloud @@ -0,0 +1,12 @@ +# zshrc/99_gcloud +# +# Copyright © 2021 Tobias Klauser <tklauser@distanz.ch> +# Released under the terms of the Artistic Licence 2.0 +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git + +if [ -f /usr/share/google-cloud-sdk/completion.zsh.inc ] ; then + source /usr/share/google-cloud-sdk/completion.zsh.inc +fi + +# vim:ft=zsh |