Skip to content

Instantly share code, notes, and snippets.

@ryangraham
Created October 20, 2025 18:32
Show Gist options
  • Save ryangraham/4d9d8f1cf00d1224eade9060f2b46f37 to your computer and use it in GitHub Desktop.
Save ryangraham/4d9d8f1cf00d1224eade9060f2b46f37 to your computer and use it in GitHub Desktop.
tmux config
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