Tmux Cheatsheet
Basic Commands
Session Management
tmux new -s <name>
- Create a new session with nametmux ls
- List all sessionstmux attach -t <name>
- Attach to a sessiontmux kill-session -t <name>
- Kill a sessiontmux rename-session -t <old-name> <new-name>
- Rename a session
Key Bindings
All commands are prefixed with the key combination Ctrl+b
(default prefix)
Windows (tabs)
<prefix> c
- Create a new window<prefix> ,
- Rename the current window<prefix> n
- Move to the next window<prefix> p
- Move to the previous window<prefix> <number>
- Switch to window number<prefix> w
- List all windows<prefix> &
- Kill the current window
Panes (splits)
<prefix> %
- Split pane horizontally<prefix> "
- Split pane vertically<prefix> arrow key
- Switch to pane in the specified direction<prefix> z
- Toggle pane zoom<prefix> x
- Kill the current pane<prefix> q
- Show pane numbers<prefix> }
- Swap with the next pane<prefix> {
- Swap with the previous pane<prefix> <space>
- Cycle through pane layouts
Resizing Panes
<prefix> Ctrl+arrow key
- Resize the current pane<prefix> Alt+arrow key
- Resize the current pane in smaller increments
Synchronizing Panes
:setw synchronize-panes on
- Turn synchronize-panes on:setw synchronize-panes off
- Turn synchronize-panes off
Copy Mode
<prefix> [
- Enter copy mode<prefix> ]
- Paste from buffer- In copy mode:
<space>
- Start selection<enter>
- Copy selectionq
- Quit copy mode
Customization
Configuration File
The tmux configuration file is located at ~/.tmux.conf
. Here are some common customizations:
# Change the prefix keyunbind C-bset-option -g prefix C-abind-key C-a send-prefix
# Enable mouse modeset -g mouse on
# Start window numbering at 1set -g base-index 1
# Start pane numbering at 1setw -g pane-base-index 1
# Reload config filebind r source-file ~/.tmux.conf \; display "Reloaded!"
# Split panes using | and -bind | split-window -hbind - split-window -vunbind '"'unbind %
# Switch panes using Alt-arrow without prefixbind -n M-Left select-pane -Lbind -n M-Right select-pane -Rbind -n M-Up select-pane -Ubind -n M-Down select-pane -D
# Status bar customizationset -g status-style bg=black,fg=whiteset -g window-status-current-style bg=white,fg=black,bold
Color Schemes
Add to ~/.tmux.conf
:
# Set terminal colorset -g default-terminal "screen-256color"
# Theme settingsset -g status-bg colour235set -g status-fg colour136set -g window-status-current-style fg=colour166,bg=default,bright
Recommended Plugins
Tmux has a plugin manager called TPM (Tmux Plugin Manager). Here’s how to install and use it:
- Install TPM:
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
- Add to
~/.tmux.conf
:
# List of pluginsset -g @plugin 'tmux-plugins/tpm'set -g @plugin 'tmux-plugins/tmux-sensible'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)run '~/.tmux/plugins/tpm/tpm'
Useful Plugins
tmux-plugins/tmux-resurrect
- Restore tmux sessions after system restarttmux-plugins/tmux-continuum
- Automatic saving of tmux environmenttmux-plugins/tmux-copycat
- Enhanced copy mode with regex searchtmux-plugins/tmux-yank
- Copy to system clipboardtmux-plugins/tmux-open
- Open highlighted text in apptmux-plugins/tmux-sidebar
- Directory tree sidebarchristoomey/vim-tmux-navigator
- Seamless navigation between tmux panes and vim splits
Integrations
Vim Integration
- Install the vim plugin
vim-tmux-navigator
for seamless navigation - Add to your
.vimrc
:
" Smart pane switching with awareness of Vim splitsPlug 'christoomey/vim-tmux-navigator'
Shell Integration
Add to your .bashrc
or .zshrc
:
# Aliases for tmuxalias ta='tmux attach -t'alias tl='tmux list-sessions'alias tn='tmux new-session -s'
Status Line Integration
wfxr/tmux-power
- Powerline-like status barerikw/tmux-powerline
- Advanced powerline status bar
Common Workflows
-
Development Environment:
Terminal window # Start a new session named 'dev'tmux new -s dev# Split into code and terminal panes<prefix> %# In one pane, start your editorvim app.js# In the other pane, run your server/testsnpm start -
Multiple Projects:
Terminal window # Create a session for each projecttmux new -s project1 -dtmux new -s project2 -d# Attach to onetmux attach -t project1# Switch sessions without detaching<prefix> s (then select) -
Server Monitoring:
Terminal window # Create a new sessiontmux new -s monitor# Create multiple panes for different stats<prefix> %<prefix> "# Run monitoring tools in eachhtopwatch df -htail -f /var/log/syslog# Turn on synchronize-panes to issue commands to all panes<prefix> : setw synchronize-panes on