diff --git a/config/tmux/.tmux.conf b/config/tmux/.tmux.conf index ab53826..450cffb 100644 --- a/config/tmux/.tmux.conf +++ b/config/tmux/.tmux.conf @@ -30,14 +30,11 @@ set -g status-right-length 100 # Key Bindings # #==============# -bind -n M-j select-pane -D -bind -n M-k select-pane -U -bind -n M-h select-pane -L -bind -n M-l select-pane -R -bind -n M-Down select-pane -D -bind -n M-Up select-pane -U -bind -n M-Left select-pane -L -bind -n M-Right select-pane -R +# Select panes +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 - less pain bind-key C-J resize-pane -D 5