diff options
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r-- | zsh/.zshrc | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -227,11 +227,13 @@ case `hostname` in ;; *.uberspace.de) HOSTCOLOR_BG=green - HOSTCOLOR_FG=white + HOSTCOLOR_FG=black + alias tmux="tmux -f ~/.tmux.uberspace.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 { |