diff --git a/configs/shared/misc/.ssh/config b/configs/shared/misc/.ssh/config index 7d3075cbd..3858ccd5c 100644 --- a/configs/shared/misc/.ssh/config +++ b/configs/shared/misc/.ssh/config @@ -1,5 +1,8 @@ Host box Hostname wpcarro.lon.corp.google.com +Host cloudtop + Hostname wpcarro.c.googlers.com + Match host *.corp.google.com ProxyCommand corp-ssh-helper %h %p diff --git a/configs/shared/zsh/.zshrc b/configs/shared/zsh/.zshrc index ca49d2867..721bc8c74 100644 --- a/configs/shared/zsh/.zshrc +++ b/configs/shared/zsh/.zshrc @@ -14,7 +14,12 @@ antigen bundle zsh-completions # extracts archives polymorphically antigen bundle zsh-users/zsh-syntax-highlighting # Theming -antigen theme refined +# This supports different ZSH themes for each machine +case "$(hostname)" in + wpcarro.c.googlers.com) antigen theme cloud;; + wpcarro.lon.corp.google.com) antigen theme frisk;; + *) antigen theme refined;; +esac # Leave this last antigen apply