Config Generator
Build your perfect .tmux.conf visually. Select features and download.
Core Settings
Enable Mouse Support
Click to select panes, resize windows, and scroll.
Increase History Limit
Set scrollback buffer to 50,000 lines.
Interface
Start Index at 1
Windows and panes start at 1 instead of 0 (easier to reach).
True Color Support
Enable 24-bit color for modern terminals.
Keybindings
Change Prefix to Ctrl+a
Remap Ctrl+b to Ctrl+a (screen/GNU style).
Vim Navigation
Use h/j/k/l to switch panes.
Reload Binding
Press Prefix + r to reload config.
Plugins
TPM (Plugin Manager)
Include Tmux Plugin Manager setup.
Preview: .tmux.conf
bash
1# tmux configuration generated by tmux.info2# https://tmux.info/tools/config-generator345# Enable Mouse Support6set -g mouse on78# Increase History Limit9set -g history-limit 500001011# Start Index at 112set -g base-index 113setw -g pane-base-index 11415# True Color Support16set -g default-terminal "tmux-256color"17set -as terminal-features ",xterm-256color:RGB"