Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ bind-key -n C-Up select-pane -U
bind-key -n C-Down select-pane -D

# Create 4 split panes (2x2 grid)
bind-key g split-window -h \; split-window -v \; select-pane -t 0 \; split-window -v
bind-key g split-window -h -c "#{pane_current_path}" \; split-window -v -c "#{pane_current_path}" \; select-pane -t 0 \; split-window -v -c "#{pane_current_path}"

# Create 3 split panes (main top-left 70%, sidebar top-right 30%, bottom 25%)
bind-key G split-window -v \; select-pane -U \; split-window -h \; resize-pane -t 2 -x 30% \; resize-pane -t 3 -y 25% \; select-pane -t 1
bind-key G split-window -v -c "#{pane_current_path}" \; select-pane -U \; split-window -h -c "#{pane_current_path}" \; resize-pane -t 2 -x 30% \; resize-pane -t 3 -y 25% \; select-pane -t 1

# Copy mode vim-style bindings
bind-key -T copy-mode-vi v send-keys -X begin-selection
Expand Down
Loading