Changelog
sudo apt install tmux # on Ubuntu
Three different ways to trigger a tmux command:
tmux <COMMAND> # via tmux program(C-b) :<COMMAND> # tmux command window(C-b <HOTKEY>) # tmux command hotkey/keybindingWorking with sessions (equivalent to a single desktop environment):
tmux (new command)C-b ?C-b d (detach)tmux a -t [SESSION_NAME] (attach)C-b $tmux ls (list-sessions)tmux kill-session / tmux kill-serverWorking with windows (equivalent to individual program windows in DE):
C-b c (neww)C-b 0 / C-b 1 / ... / C-b l (last window)C-b &Working with panes:
C-b % or C-b " (split-window)C-b Up / C-b Down / ...C-b { / C-b }C-b M-5 (e.g. for even tiling)C-b x
Enable mouse support with :set -g mouse on. This changes some behaviours with regard to copy and pasting: highlight can still be done by holding Shift. Some things one can do:
C-b ] to paste)
Configure tmux server with config file at ~/.tmux.conf.
# Quick reload for tmux configuration edits
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# Remap prefix from C-b to C-a (minicom convention)
unbind C-a
set -g prefix C-a
bind C-a send-prefix
# Add mouse support
set -g mouse on
# Increase history
set-option -g history-limit 5000
# Change window and pane numbering (and cleanup)
set -g base-index 1
setw -g pane-base-index 1
set -g renumber-windows on
# Use '-' and '|' for vertical and horizontal splits
bind-key "|" split-window -h -c "#{pane_current_path}"
bind-key "\\" split-window -fh -c "#{pane_current_path}"
bind-key "-" split-window -v -c "#{pane_current_path}"
bind-key "_" split-window -fv -c "#{pane_current_path}"
# Preserve path on window creation
bind c new-window -c "#{pane_current_path}"
# Fast select windows
bind -n M-1 select-window -t 1
bind -n M-2 select-window -t 2
bind -n M-3 select-window -t 3
bind -n M-4 select-window -t 4
bind -n M-5 select-window -t 5
bind -n M-6 select-window -t 6
bind -n M-7 select-window -t 7
bind -n M-8 select-window -t 8
bind -n M-9 select-window -t 9
# Switch panes with Alt-arrows
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Compatibility for systems without 'tmux-256color'
set -g default-terminal "screen-256color"
# My favorite CLI shell
set -g default-shell /usr/bin/fish