aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.tmux.conf2
-rw-r--r--.zsh.after/export.zsh2
2 files changed, 3 insertions, 1 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 2e1a4d3..16c3173 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -1,7 +1,7 @@
# Ring the bell if any background window rang a bell
set -g bell-action any
-set -g default-terminal "screen-256color"
+set -g default-terminal "tmux-256color"
# split windows like vim
# vim's definition of a horizontal/vertical split is reversed from tmux's
diff --git a/.zsh.after/export.zsh b/.zsh.after/export.zsh
index 74f1b41..dcc16b9 100644
--- a/.zsh.after/export.zsh
+++ b/.zsh.after/export.zsh
@@ -1,5 +1,7 @@
# use xterm-color anywhere. Sane default for color and termite
if [[ -n $TMUX ]];then
+ export TERM="tmux-256color"
+elif [[ -n $STY ]];then
export TERM="screen-256color"
else
export TERM="xterm-256color"