Skip to main content

Config Generator

Choose settings for your .tmux.conf, review the result, and download it.

Core Settings

Interface

Keybindings

Plugins

Preview: .tmux.conf

bash
1# tmux configuration generated by tmux.info
2# https://tmux.info/tools/config-generator
3
4# Enable Mouse Support
5set -g mouse on
6
7# Increase History Limit
8set -g history-limit 50000
9
10# Start Index at 1
11set -g base-index 1
12setw -g pane-base-index 1
13
14# Vim Navigation
15bind h select-pane -L
16bind j select-pane -D
17bind k select-pane -U
18bind l select-pane -R
19
20# Reload Binding
21bind r source-file ~/.tmux.conf \; display "Config reloaded!"

Save the downloaded file as ~/.tmux.conf; some browsers remove the leading dot. If you already have a config, merge the settings you want or use the install script to create a backup first.