From a2e9abbb76180a59f266cdeab9300e294efdd4fc Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Fri, 19 Jun 2020 13:32:35 -0400 Subject: [PATCH] Fix dt to always tell tmux to use unicode --- zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/zshrc b/zsh/zshrc index ecf2c87..836ca88 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -56,7 +56,7 @@ function dt() { local session_name session_name=${1:-DefaultSession} - tmux -2 new-session -A -s $session_name + tmux -u -2 new-session -A -s $session_name } function send-to-pane() {