tmux Plugins and Productivity Setup

tmux plugin manager patterns, TPM setup, and common plugin snippets for restoring sessions, sensible defaults, and clipboard workflows.

View
StandardDetailedCompact
Export
Copy the compact sheet, download it, or print it.
Download
`D` dense toggle · `C` copy all
## Plugin manager basics
Add TPM to the plugin list
set -g @plugin "tmux-plugins/tpm"

# Declare the tmux plugin manager in config.

Add sensible defaults plugin
set -g @plugin "tmux-plugins/tmux-sensible"

# Load opinionated defaults.

Bootstrap TPM from config
run "~/.tmux/plugins/tpm/tpm"

# Initialize TPM at the bottom of .tmux.conf.

Clone TPM
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

# Install the plugin manager itself.

Recommended next

No recommendations yet.