Created
October 20, 2025 18:32
-
-
Save ryangraham/4d9d8f1cf00d1224eade9060f2b46f37 to your computer and use it in GitHub Desktop.
tmux config
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
| cat ~/.tmux.conf | |
| # Enable mouse mode | |
| set -g mouse on | |
| # Create 2x2 grid layout on new sessions | |
| set-hook -g after-new-session { | |
| split-window -h | |
| split-window -v | |
| select-pane -t 0 | |
| split-window -v | |
| select-pane -t 0 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment