summaryrefslogtreecommitdiff
path: root/zsh/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r--zsh/.zshrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 2a215df..99f2570 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -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