diff options
author | Juan J. Martinez <jjm@usebox.net> | 2019-08-23 21:05:50 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:28 +0100 |
commit | bf29e491f324a8687cb8f6915ea65e071ad480c2 (patch) | |
tree | b48fcf21117fd65b23b971b21cdc5c7ffa37aeb3 | |
parent | 71656010c1bb0a87904f854777514bf9b83e98b0 (diff) | |
download | dotnvim-bf29e491f324a8687cb8f6915ea65e071ad480c2.tar.gz dotnvim-bf29e491f324a8687cb8f6915ea65e071ad480c2.zip |
Use current directory; more user friendly bindings
-rw-r--r-- | tmux.conf | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -40,6 +40,11 @@ set -g focus-events on # Bind to reload config bind r source-file ~/.tmux.conf +# Use current directory for these +bind c new-window -c "#{pane_current_path}" +bind h split-window -h -c "#{pane_current_path}" +bind v split-window -v -c "#{pane_current_path}" + ## COLORSCHEME: gruvbox dark set-option -g status "on" |