From 60706c3fb19789b5993ead97fc5bd015aa6476c4 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Fri, 18 Jun 2021 18:49:14 +0000 Subject: [PATCH] Force unicode in tmux --- roles/home-cli/files/bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/home-cli/files/bashrc b/roles/home-cli/files/bashrc index da7d37a..6a1f6af 100644 --- a/roles/home-cli/files/bashrc +++ b/roles/home-cli/files/bashrc @@ -177,9 +177,9 @@ emacsro () { tm () { if tmux list-session 2>/dev/null 1>/dev/null then - tmux -2 attach-session + tmux -2 -u attach-session else - tmux -2 new-session + tmux -2 -u new-session fi }