Created
October 10, 2025 10:13
-
-
Save dextermb/0301e11bfc79c8e4bad9ddb415ae46d2 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
| # List of plugins | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-resurrect' | |
| # Other settings | |
| set -g @resurrect-capture-pane-contents 'on' # if you want to capture pane contents | |
| set -g mouse on | |
| set -sg escape-time 0 | |
| # Keybindings | |
| bind c new-window -c "#{pane_current_path}" | |
| bind % split-window -h -c "#{pane_current_path}" | |
| bind '"' split-window -v -c "#{pane_current_path}" | |
| # Initialization | |
| run -b '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment