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.info
2# https://tmux.info/tools/config-generator
3
4
5# Enable Mouse Support
6set -g mouse on
7
8# Increase History Limit
9set -g history-limit 50000
10
11# Start Index at 1
12set -g base-index 1
13setw -g pane-base-index 1
14
15# True Color Support
16set -g default-terminal "tmux-256color"
17set -as terminal-features ",xterm-256color:RGB"