cat < ~/.tmux.conf # Rebind to Ctrl-a set -g prefix C-a unbind C-b bind a send-prefix bind C-a last-window bind '"' choose-window # Rebind pane splitting unbind % bind - split-window -v bind _ split-window -h # Set status bar set -g status-bg colour236 set -g status-fg white set -g status-left '#[fg=green]#H' # Highlight active window setw -g window-status-style fg=cyan,bg=colour164,dim setw -g window-status-current-style fg=white,bg=red,bright # Force 256 colors set -g default-terminal "screen-256color" EOF