After a long-time relationship with screen I also got to a point when tmux was more compeling… and there I go, into the tmux world, in a peacefull move (nothing bad said about screen ! there are already too much screen-hate-converted-tmuxers…)
Here I leave some personal notes for the switcher:
Configuration files
/etc/tmux.conf – system-wide
~/.tmux.conf – user-only
If terminal colors are all messed up (in vim and such)
Add these lines into ~/.tmux.conf
# set correct term set -g default-terminal "screen-256color" # and add an alias into ~/.bashrc # alias 'tmux'='TERM=xterm-256color tmux' # see http://unix.stackexchange.com/questions/1045/getting-256-colors-to-work-in-tmux
And this alis into ~/.bashrc
# Alias for tmux (fixes tmux terminal colors) alias 'tmux'='TERM=xterm-256color tmux'