Last active
October 1, 2025 20:15
-
-
Save zzhuolun/5306ac81626a3a77725a96445285e4eb to your computer and use it in GitHub Desktop.
My tmux config file.
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-option -g prefix C-z | |
| bind-key \\ split-window -h # Split panes horizontal | |
| bind-key - split-window -v # Split panes vertically | |
| set -sg escape-time 10 | |
| set-option -g default-terminal "screen-256color" | |
| set-option -sa terminal-overrides ',screen-256color:RGB' | |
| set -g default-command /usr/bin/fish | |
| set -g default-shell /usr/bin/fish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment