diff options
author | David Runge <dave@sleepmap.de> | 2021-02-07 16:20:35 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2021-02-07 16:20:35 +0100 |
commit | 74af8ee7103891e694503af5b8e86b3c5b2373d9 (patch) | |
tree | 845d4572288f8348eb759a055484d6fdfcee9ce2 | |
parent | 776d6512f2a088d136b14fe9fc1d1cfd77c1460a (diff) | |
download | dotfiles-74af8ee7103891e694503af5b8e86b3c5b2373d9.tar.gz dotfiles-74af8ee7103891e694503af5b8e86b3c5b2373d9.tar.bz2 dotfiles-74af8ee7103891e694503af5b8e86b3c5b2373d9.tar.xz dotfiles-74af8ee7103891e694503af5b8e86b3c5b2373d9.zip |
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.
-rw-r--r-- | .zsh.after/export.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |