aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2018-02-26 14:59:42 -0700
committerCody Hiar <codyfh@gmail.com>2018-02-26 15:00:06 -0700
commite4a6b968e5229995e8255a9f46ac58966da1f0eb (patch)
tree05f3d0090c41e16ec34a23b22a6856f88a173ed4
parent8d6bb05e4251eca675ec0dfb45686dc1314e8989 (diff)
Adding quick resizing commands
-rw-r--r--tmux.config4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux.config b/tmux.config
index c29dea8..47f45c4 100644
--- a/tmux.config
+++ b/tmux.config
@@ -17,6 +17,10 @@ bind C-l select-pane -R
bind x kill-pane
bind & kill-window
# Easy resizing of the pane
+bind C-u resize-pane -D 3
+bind C-i resize-pane -U 3
+bind C-y resize-pane -L 3
+bind C-o resize-pane -R 3
bind j resize-pane -D 3
bind k resize-pane -U 3
bind h resize-pane -L 3