Created
April 24, 2026 18:24
-
-
Save adastreamer/f32e8543068b8d5829521678fd5dcc8b 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
| set -g mouse on | |
| set -g pane-border-status bottom | |
| unbind C-b | |
| set -g prefix C-j | |
| bind j send-prefix | |
| set -s copy-command 'xsel -b' | |
| bind-key -T copy-mode-vi WheelUpPane send-keys -X -N 1 scroll-up | |
| bind-key -T copy-mode-vi WheelDownPane send-keys -X -N 1 scroll-down | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-sensible' | |
| set -g @plugin 'tmux-plugins/tmux-resurrect' | |
| set -g @plugin 'nhdaly/tmux-better-mouse-mode' | |
| set -g @scroll-speed-num-lines-per-scroll 1 | |
| set -g allow-rename off | |
| set -g automatic-rename off | |
| run '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment