Do not force unicode with tmux

This commit is contained in:
Wojciech Kozlowski 2024-02-04 10:16:06 +01:00
parent 86005988e4
commit 7d1b975af6

View File

@ -11,7 +11,7 @@ esac
# TMUX # TMUX
if which tmux >/dev/null 2>&1; then if which tmux >/dev/null 2>&1; then
# If not inside a tmux session, and if no session is started, start a new session # If not inside a tmux session, and if no session is started, start a new session
test -z "$TMUX" && (tmux -u attach || tmux -u new-session) test -z "$TMUX" && (tmux attach || tmux new-session)
fi fi
# don't put duplicate lines or lines starting with space in the history. # don't put duplicate lines or lines starting with space in the history.