From de29a3bc7005d8e4edd991286b81112e3db3a40c Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:16:00 +1000 Subject: [PATCH] zsh: force tmux to use configuration file in .config via alias it doesn't work otherwise on OSX --- stow/.zshrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stow/.zshrc b/stow/.zshrc index 0a8eb4c..a8c385a 100644 --- a/stow/.zshrc +++ b/stow/.zshrc @@ -26,6 +26,8 @@ alias ls="ls -h --color=auto" alias la="ls -ah --color=auto" alias ll="ls -ahl --color=auto" +alias tmux="tmux -f $HOME/.config/tmux/tmux.conf" # needed for osx systems for some reason + # env vars export GOPATH="$HOME/.local/share/go" export PATH="$PATH:$GOPATH/bin"