commit 7780f88c8d9c745d02eafff432da989dee27be37 parent f8ff4521ae1f466565754fcc1933458c22be219a Author: finwo <finwo@pm.me> Date: Wed, 21 Aug 2019 05:28:36 +0200 Added gcloud sdk loading in zshrc Diffstat:
| M | zsh/home/.zshrc | | | 7 | +++++++ |
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/zsh/home/.zshrc b/zsh/home/.zshrc @@ -111,3 +111,10 @@ PROMPT_COMMAND= # FuzzyFinder {{{ [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh # }}} +# Google Cloud SDK {{{ +# The next line updates PATH for the Google Cloud SDK. +if [ -f "${HOME}/google-cloud-sdk/path.zsh.inc" ]; then . "${HOME}/google-cloud-sdk/path.zsh.inc"; fi + +# The next line enables shell command completion for gcloud. +if [ -f "${HOME}/google-cloud-sdk/completion.zsh.inc" ]; then . "${HOME}/google-cloud-sdk/completion.zsh.inc"; fi +# }}}