feat(zsh): add google cloud integration

Signed-off-by: Anthony Oteri <4360016+anthonyoteri@users.noreply.github.com>
This commit is contained in:
Anthony Oteri
2026-04-29 10:27:05 -04:00
parent bb13297bf0
commit 414c68c6a0
+12
View File
@@ -98,6 +98,17 @@ zstyle ':fzf-tab:complete:__zoxide_z:*' fzf-preview 'ls --color $realpath'
eval "$(fzf --zsh)"
eval "$(zoxide init --cmd cd zsh)"
############################################################
# Google Cloud SDK
############################################################
if [ -f "${HOME}/.google-cloud-sdk/path.zsh.inc" ]; then
. "${HOME}/.google-cloud-sdk/path.zsh.inc"
fi
if [ -f "${HOME}/.google-cloud-sdk/completion.zsh.inc" ]; then
. "${HOME}/.google-cloud-sdk/completion.zsh.inc"
fi
############################################################
# Custom environment variables
############################################################
@@ -126,3 +137,4 @@ alias docker-compose='docker compose'
alias neofetch='fastfetch'
alias lazygit='lazygit -ucd $HOME/.config/lazygit'