From dd869cdbd22986c5f8f704e0be116b26fcf0e784 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Tue, 17 May 2016 14:24:39 -0700 Subject: [PATCH] Change tmux resizing to vim-like binds --- dotfiles/tmux.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dotfiles/tmux.conf b/dotfiles/tmux.conf index dc54a56..227f9b6 100644 --- a/dotfiles/tmux.conf +++ b/dotfiles/tmux.conf @@ -70,6 +70,12 @@ bind-key -t vi-copy 'y' copy-selection # Vim keybind so that paste is done more naturally instead of with ] bind p paste-buffer +# Resize tmux splits +bind-key -r < resize-pane -L 3 +bind-key -r > resize-pane -R 3 +bind-key -r + resize-pane -U 1 +bind-key -r = resize-pane -D 1 + ################################### # # # Custom Settings #