diff options
author | Cody Hiar <cody@hiar.ca> | 2021-09-14 13:55:21 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-09-14 13:55:21 -0600 |
commit | a21c68a2e073b32b581fb94b6bd50a1df85281e9 (patch) | |
tree | 2ffe6518caf2d308b187d75366d7dd3aba61b85f | |
parent | f8716663177cf5767c0093cf75418719a46587d7 (diff) |
Updating fullscreen and splits
-rw-r--r-- | stow/tmux/.tmux.conf | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/stow/tmux/.tmux.conf b/stow/tmux/.tmux.conf index 5749196..4dd4f28 100644 --- a/stow/tmux/.tmux.conf +++ b/stow/tmux/.tmux.conf @@ -7,7 +7,9 @@ unbind '"' unbind % bind '"' split-window -v -c "#{pane_current_path}" +bind C-v split-window -v -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}" +bind C-c split-window -h -c "#{pane_current_path}" # Vim movements bind C-h select-pane -L bind C-j select-pane -D @@ -32,7 +34,7 @@ bind S switch-client -l # Synchronize mode bind a set-window-option synchronize-panes # Remap zoom, sleeping tmux way too much -bind C-v resize-pane -Z +bind C-f resize-pane -Z # I constantly mix up copy/paste. Very annoying/dangerous if cliboard has commands in it unbind [ bind C-g copy-mode |