This tool helps you build a tmux configuration file based on your preferences. You can adjust settings for key bindings, appearance, status bar, and add useful plugins.
# Tmux Configuration # Generated with TmuxAI Config Generator # https://tmuxai.dev # -- Basic Settings ------------------------------------------ set -g prefix C-b set -g escape-time 500 set -g history-limit 5000 set -g base-index 1 setw -g pane-base-index 1 set -g mouse on # -- Key Bindings ------------------------------------------ # Pane navigation bind Left select-pane -L bind Down select-pane -D bind Up select-pane -U bind Right select-pane -R # -- Status Bar --------------------------------------------- set -g status-position bottom set -g status-interval 1 # -- Plugins ----------------------------------------------- # Plugin manager set -g @plugin 'tmux-plugins/tpm' # Other plugins set -g @plugin 'tmux-plugins/tmux-resurrect' set -g @plugin 'tmux-plugins/tmux-sensible' # Initialize TMUX plugin manager # Keep this line at the very bottom of tmux.conf run '~/.tmux/plugins/tpm/tpm'