diff options
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -228,10 +228,12 @@ case `hostname` in *.uberspace.de) HOSTCOLOR_BG=green HOSTCOLOR_FG=black + alias tmux="tmux -f ~/.tmux.gcloud.conf" ;; *) HOSTCOLOR_BG=black HOSTCOLOR_FG=white + alias tmux="tmux -f ~/.tmux.default.conf" ;; esac @@ -243,11 +245,11 @@ if [[ $(on_gcloud) == "yes" ]]; then fi # aws -#if [[ $(on_aws) == "yes" ]]; then -# HOSTCOLOR_BG=yellow -# HOSTCOLOR_FG=black -# alias tmux="tmux -f ~/.tmux.aws.conf" -#fi +if [[ $(on_aws) == "yes" ]]; then + HOSTCOLOR_BG=yellow + HOSTCOLOR_FG=black + alias tmux="tmux -f ~/.tmux.aws.conf" +fi function chpwd { |