summaryrefslogtreecommitdiff
path: root/zsh/.zshrc
diff options
context:
space:
mode:
authorPatrick Simianer <pks@pks.rocks>2019-09-04 08:30:00 +0200
committerPatrick Simianer <pks@pks.rocks>2019-09-04 08:30:00 +0200
commit1a3834480e6bab4f3e68e52f7a9c7e56ef96752a (patch)
tree577ef4826ded628a1560a0c90917006f8ba3c46a /zsh/.zshrc
parent56c4affe6b7223147de447eaf21eeef0610dd7f5 (diff)
tmux: cleaner
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