Configuration for tmux

TL;DR

My configuration for tmux.

This is my configuration for tmux - with parts copied from here and there.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
set -g prefix C-b
bind-key C-b last-window

# Start numbering at 1
set -g base-index 1

# Allows for faster key repetition
set -s escape-time 0

# Set status bar
set -g status-bg black
set -g status-fg white
set -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 session
bind-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 window
set-window-option -g window-status-current-bg blue

# split current window horizontally
bind - split-window -v
# split current window vertically
bind | split-window -h

Local version here.

A few remarks:

  • 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.

Stay safe everyone!


Comments? Octodon, , GitHub, Reddit, or drop me a line!