diff options
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -231,22 +231,22 @@ case `hostname -f` in *.uberspace.de) HOSTCOLOR_BG=green HOSTCOLOR_FG=black - alias tmux="tmux -f ~/.tmux.uberspace.conf" + alias tmux="tmux -f ~/.tmux/uberspace.conf" ;; *) HOSTCOLOR_BG=black HOSTCOLOR_FG=white - alias tmux="tmux -f ~/.tmux.default.conf" + alias tmux="tmux -f ~/.tmux/default.conf" # google cloud if [[ $(on_gcloud) == "yes" ]]; then HOSTCOLOR_BG=blue HOSTCOLOR_FG=white - alias tmux="tmux -f ~/.tmux.gcloud.conf" + alias tmux="tmux -f ~/.tmux/gcloud.conf" # aws elif [[ $(on_aws) == "yes" ]]; then HOSTCOLOR_BG=yellow HOSTCOLOR_FG=black - alias tmux="tmux -f ~/.tmux.aws.conf" + alias tmux="tmux -f ~/.tmux/aws.conf" fi ;; esac |