I\'m running iterm2 and when I\'m in tmux mode the colorscheme I have set in vim does not show up. Only the color scheme I\'ve set in iterm. If I run vim from shell the colo
As @romainl mentions above, I needed to force tmux to use 256 colors by adding the -2 flag:
-2
$ tmux -2
I added alias tmux='tmux -2' to my bash_profile, so, I don't forget :)
alias tmux='tmux -2'