tmux: start split panes in current directory

This commit is contained in:
Oliver Ladner 2024-02-04 14:17:40 +01:00
commit 570ea1689e

View file

@ -52,3 +52,6 @@ set-environment -g COLORTERM "truecolor"
# Display messages longer (ms)
#set-option -g display-time 4000
# Splits start with $PWD from source pane
bind '"' split-window -v -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"