diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-30 20:44:12 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-30 20:44:12 -0500 |
commit | 704e80d39e73cf26dd3939e95501d897b9a853be (patch) | |
tree | f516932b2b7d525a7c1e0f646876e724e65b80bd | |
parent | 201caf44488ab9f6bb024081788a61f675ff63d2 (diff) |
Maintain directory in tmux splits
-rw-r--r-- | src/config/files/tmux/.tmux.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config/files/tmux/.tmux.conf b/src/config/files/tmux/.tmux.conf index 794c45b..c576478 100644 --- a/src/config/files/tmux/.tmux.conf +++ b/src/config/files/tmux/.tmux.conf @@ -4,6 +4,8 @@ set-option -g mouse on set-option -g prefix C-a set-option -g status-keys vi set-option -g renumber-windows on +bind '"' split-window -c "#{pane_current_path}" +bind % split-window -h -c "#{pane_current_path}" set -g @plugin 'tmux-plugins/tmux-resurrect' set -g @resurrect-strategy-vim 'session' |