Created
December 23, 2025 00:25
-
-
Save mrf/2844053dd58bc44219787d75415efb0c to your computer and use it in GitHub Desktop.
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
| set -g mouse on | |
| bind '"' split-window -c "#{pane_current_path}" | |
| bind % split-window -h -c "#{pane_current_path}" | |
| bind c new-window -c "#{pane_current_path}" | |
| set-option -sg escape-time 10 | |
| set-option -g focus-events on | |
| # List of plugins | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-sensible' | |
| set -g @plugin 'wfxr/tmux-power' | |
| set -g @tmux_power_theme 'everforest' | |
| set -g @plugin 'christoomey/vim-tmux-navigator' | |
| # y for yank instead of enter default | |
| # bind-key -T copy-mode-vi 'y' send -X copy-selection # Yank selection in copy mode. | |
| # Other examples: | |
| # set -g @plugin 'github_username/plugin_name' | |
| # set -g @plugin 'github_username/plugin_name#branch' | |
| # set -g @plugin 'git@github.com:user/plugin' | |
| # set -g @plugin 'git@bitbucket.com:user/plugin' | |
| # 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