tmux start new
tmux new -s [myname] start new with session name
tmux a # (or at, or attach) attach
tmux a -t [myname] attach to named
| #Prefix is Ctrl-a | |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| unbind C-b | |
| set -sg escape-time 1 | |
| set -g base-index 1 | |
| setw -g pane-base-index 1 | |
| #Mouse works as expected |