set -g prefix C-bbind-key C-b last-window# Start numbering at 1set -g base-index 1# Allows for faster key repetitionset -s escape-time 0# Set status barset -g status-bg blackset -g status-fg whiteset -g status-right "#[fg=green]%k:%M:%S"set -g status-interval 1# Rather than constraining window size to the maximum size of any client # connected to the *session*, constrain window size to the maximum size of any # client connected to *that window*. Much more reasonable.setw -g aggressive-resize on# Allows us to use C-a a <command> to send commands to a TMUX session inside # another TMUX sessionbind-key b send-prefix# Activity monitoring#setw -g monitor-activity on#set -g visual-activity on# Example of using a shell command in the status line#set -g status-right "#[fg=yellow]#(uptime | cut -d ',' -f 2-)"# Highlight active windowset-window-option -g window-status-current-bg blue# split current window horizontallybind - split-window -v# split current window verticallybind | split-window -h
CTRL-B is the prefix. That’s it, different from screen, lets me go
to the beginning of a command line but makes it harder to jump back by
pages in the editor or the pager.
The status line is basic but useful, with colors and the clock.
CTRL-B CTRL-B toggles with the last window, streamlining jumping
between two windows. It’s the single thing that I wish were a default
instead of needing explicit configuration.
CTRL-B | divides into panes vertically, CTRL-B - divides into
panes horizontally. It just makes so much sense!
Everything is totally not something I came up with on my own, but
unfortunately I don’t know whom I should attribute the different bits.
Shame on me but… at least I’m not taking the merit!
It’s easy to install it: put the file in a .tmux.conf file inside the
home directory, and nothing more is needed.