tmuxで256色表示に対応させる - tmux
「ubuntu12.10+tmux+vim、できるだけ少ない手順で256色表示にする」 - StupidDog's blog
上の記事が参考というかそのまんま
aliasを追加する
# ~/.bash_profile alias tmux='tmux -2'
tmux(1) - Linux manual page を確認すると、-2
オプションがあった
-2 Force tmux to assume the terminal supports 256 colours.
tmuxに端末が256色をサポートしていることを強制します。
tmux -2
で256色を強制的にサポートできるのか!!!