Tmux
Back to Terminal
TmuxBeginner12 min

Tmux Cheat Sheet 2026: Every Command, Shortcut, and Configuration You Need

Every Tmux Command in One Place

The complete tmux cheat sheet for 2026. Every prefix command, window management shortcut, pane splitting key, and configuration option in one quick-reference guide.

Tmux keeps your terminal sessions alive — detach on a remote server, reattach from your laptop, and everything is still running.

By the end of this 12 min guide, you'll have a working Tmux setup and practical Tmux workflows you can use immediately.

Installation & Setup

Install Tmux:

brew install tmux
Tip: Verify the installation with tmux --version or tmux -V after installing.

Session Management Commands

Your ~/.tmux.conf controls everything: prefix key, split behavior, colors, and plugins. Start with a minimal config and grow it.

Here's a foundational configuration to start with:

# tmux.conf
set -g prefix C-a
unbind C-b
bind r source-file ~/.tmux.conf \; display "Reloaded!"
set -g mouse on
bind | split-window -h
bind - split-window -v

Window & Pane Shortcuts

With Tmux configured, these Tmux-specific workflows will save you time every day:

Pro tip: Don't try to adopt everything at once. Start with Ctrl-a c create new window (tab) and add more as it becomes habit.

Copy Mode, Search & Buffers

Once you're comfortable with Tmux basics, these advanced techniques will transform your Tmux workflow:

Common Error Messages

Here are the most common Tmux issues and how to fix them:

Cheat Sheet Complete

Congratulations — you now have a solid Tmux foundation. Here's where to go next:

← PreviousNeovim Plugins 2026: 15 Essential Plugins for a Modern Lua-Based SetupNext →Zellij Layouts and Floating Panes: Build a Modular Terminal Workspace