Last active
July 25, 2025 06:10
-
-
Save tenthree/d506026c41ce76f53a0cde5becc0c0b8 to your computer and use it in GitHub Desktop.
tmux.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # reload config | |
| bind r source-file ~/.config/tmux/tmux.conf \; display-message "~/.config/tmux/tmux.conf reloaded" | |
| # custom prefix key ` | |
| unbind C-b | |
| set -g prefix ` | |
| bind ` send-prefix | |
| # true colors support | |
| set -g default-terminal "${TERM}" | |
| set -sg terminal-overrides ",*:RGB" | |
| # mouse | |
| set -g mouse on | |
| # 1-base indexing | |
| set -g base-index 1 | |
| set -g pane-base-index 1 | |
| # status | |
| set-option -g status-position top | |
| # List of plugins | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-sensible' | |
| # Other examples: | |
| # set -g @plugin 'github_username/plugin_name' | |
| # set -g @plugin 'github_username/plugin_name#branch' | |
| # set -g @plugin '[email protected]:user/plugin' | |
| # set -g @plugin '[email protected]:user/plugin' | |
| # tmux-power themes | |
| set -g @plugin 'wfxr/tmux-power' | |
| set -g @tmux_power_theme 'everforest' | |
| # floaX floating panes (tmux 3.3+) | |
| set -g @plugin 'omerxx/tmux-floax' | |
| set -g @floax-bind 'f' | |
| set -g @floax-bind-menu 'F' | |
| # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
| run '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment