diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index e5441bc..aff9fe3 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -18,16 +18,16 @@ bind N command-prompt 'rename-session %%' # Move around bind . next-window bind , previous-window -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R +bind C-h select-pane -L +bind C-j select-pane -D +bind C-k select-pane -U +bind C-l select-pane -R # Resize panes -bind -r C-h resize-pane -L 5 -bind -r C-j resize-pane -D 5 -bind -r C-k resize-pane -U 5 -bind -r C-l resize-pane -R 5 +bind -r h resize-pane -L 1 +bind -r j resize-pane -D 1 +bind -r k resize-pane -U 1 +bind -r l resize-pane -R 1 # Arrangement of panes bind b break-pane \; select-pane -m \; last-window