From ff7313272fb0b24c7aace1be07933a523047bde9 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Tue, 24 Nov 2015 08:06:07 +0000 Subject: [PATCH] Disable the term setting for now --- dotfiles/zshrc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 30b1c97..a662037 100644 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -11,11 +11,13 @@ export TERM=rxvt-256color # so I need to export rxvt-256color and copy the rxvt-256color terminfo # to the right location (see package installer for details). # This will need to be changed if you use a different terminal emulator. -if [[ "$OSTYPE" == "linux-gnu" ]]; then - export TERM=rxvt-256color -else - export TERM=xterm-256color -fi +# +# Currently disabled to test automatic terminal detection +#if [[ "$OSTYPE" == "linux-gnu" ]]; then +# export TERM=rxvt-256color +#else +# export TERM=xterm-256color +#fi alias emacs='emacs -nw' alias irssi='TERM=screen-256color irssi'