From 74af8ee7103891e694503af5b8e86b3c5b2373d9 Mon Sep 17 00:00:00 2001 From: David Runge Date: Sun, 7 Feb 2021 16:20:35 +0100 Subject: export.zsh: Change TERM to screen-256color .zsh.after/export.zsh: The use of tmux-256color as $TERM leads to annoying artifacts in ncurses based applications upon resize of the terminal multiplexer. The use of screen-256color does not exhibit this problem. --- .zsh.after/export.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zsh.after/export.zsh b/.zsh.after/export.zsh index db2b22d..fff2c88 100644 --- a/.zsh.after/export.zsh +++ b/.zsh.after/export.zsh @@ -1,5 +1,5 @@ if [[ -n $TMUX ]] && [[ $VENDOR != "apple" ]] && [[ ! -e /etc/debian_version ]]; then - export TERM="tmux-256color" + export TERM="screen-256color" elif [[ -n $STY ]];then export TERM="screen-256color" else -- cgit v1.2.3