This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If tmux doesn't display colours the same way as the terminal (xterm in my case) from which you started it, | |
try this solution. Maybe it works for you. | |
in .tmux.conf | |
set -g default-terminal 'screen-256color' | |
in .bashrc | |
alias tmux="export TERM=xterm-256color; tmux" |