diff options
author | Tyler Davis <tydavis@gmail.com> | 2023-07-13 05:40:21 +0000 |
---|---|---|
committer | Tyler Davis <tydavis@gmail.com> | 2023-07-13 05:40:21 +0000 |
commit | bc688d829e87f0c0236b662b4e1dee3fc162f299 (patch) | |
tree | a3d041b40bc86dd448f8bd1ba916c86c91c0ca43 /.zshrc | |
parent | 1eede7db8ebfad3b9cedaced9eb5436e7cdac058 (diff) | |
download | dotfiles-bc688d829e87f0c0236b662b4e1dee3fc162f299.tar.gz dotfiles-bc688d829e87f0c0236b662b4e1dee3fc162f299.zip |
zsh,pac: add aws and gcloud tools
Diffstat (limited to '.zshrc')
-rw-r--r-- | .zshrc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -51,6 +51,11 @@ case "$OSTYPE" in # Rust GDB export PYTHONPATH=$PYTHONPATH:$HOME/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/etc + # The next line updates PATH for the Google Cloud SDK. + if [ -f '/home/tydavis/.gcloud/google-cloud-sdk/path.zsh.inc' ]; then . '/home/tydavis/.gcloud/google-cloud-sdk/path.zsh.inc'; fi + # The next line enables shell command completion for gcloud. + if [ -f '/home/tydavis/.gcloud/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/tydavis/.gcloud/google-cloud-sdk/completion.zsh.inc'; fi + `eval ~/.local/bin/pathuniq-rs` ;; dragonfly*|freebsd*|netbsd*|openbsd*) @@ -187,3 +192,4 @@ if [[ ! -v VSCODE_INJECTION ]]; then fi fi fi + |