diff options
Diffstat (limited to 'tmux/tmux.conf')
| -rw-r--r-- | tmux/tmux.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf index a983bbc..3f2a585 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -1,3 +1,4 @@ +# quickly apply config changes: <prefix>r unbind r bind r source-file ~/.config/tmux/tmux.conf @@ -17,5 +18,10 @@ bind-key j select-pane -D bind-key k select-pane -U bind-key l select-pane -R +# highlight current window in status bar set-window-option -g window-status-current-style 'bg=brightwhite' set-window-option -g window-status-current-format ' #I:#W ' + +# open pane splits at the same path as current pane +bind '"' split-window -v -c "#{pane_current_path}" +bind % split-window -h -c "#{pane_current_path}" |
