From e1c8b85ed5ba13d2702a6eb16407e4b3acba096b Mon Sep 17 00:00:00 2001 From: Paul Walko Date: Sat, 18 Nov 2017 10:02:00 -0500 Subject: [PATCH] fix TERM --- zprofile | 15 --------------- zshrc | 3 +++ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/zprofile b/zprofile index 949f0e6..e713b1e 100644 --- a/zprofile +++ b/zprofile @@ -1,18 +1,3 @@ -## Set term for proper colors -if [[ -z $TMUX ]]; then - if [ -e /usr/share/terminfo/x/xterm-256color ]; then # may be xterm-256 depending on your distro - export TERM='xterm-256color' - else - export TERM='xterm' - fi -else - if [ -e /usr/share/terminfo/s/screen-256color ]; then - export TERM='screen-256color' - else - export TERM='screen' - fi -fi - # Other settings xbindkeys &> /dev/null gpg2 --quiet --no-tty --batch -d $HOME/.mutt/passwords/dumb.gpg &> /dev/null diff --git a/zshrc b/zshrc index 84468de..7b38ec5 100644 --- a/zshrc +++ b/zshrc @@ -1,5 +1,8 @@ ### ZSH Config +## Set TERM +export TERM=xterm-256color + ## For local binaries (vim 8) export PATH=$HOME/.local/bin:$PATH