问题解决实录 | bash 中 tmux 颜色显示不全

如下图,tmux 中颜色显示不全:

1
echo $TERM

输出的是 screen

但在 bash 里面输出的是 xterm-256 color

在 bash 里面输入:

1
2
3
touch  ~/.tmux.conf
vim ~/.tmux.conf
set -g default-terminal "xterm-256color"

使之生效
1
source  ~/.tmux.conf

再打开 tmux 现在显示正常