Update tmux/.tmux.conf

This commit is contained in:
Johannes Merz 2023-09-21 14:51:19 +02:00
parent 885b0bb307
commit 29925e9750
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,10 @@
set-option -g default-terminal "screen-256color"
set -g pane-border-status
# reorder window numbers when a window is deleted
# [0 1 2] -- [delete 1] --> [0 1] instead of [0 2]
set-option -g renumber-windows on
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"