Tmux Vim Keys
Publish date: Aug 31, 2019
Для включения vim keys, в тмуксе, отредактировать .tmux.conf
vim ~/.tmux.conf
# use hjkl for moving
# # and HJKL for resizing
setw -g mode-keys vi
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind-key -r C-h select-window -t :-
bind-key -r C-l select-window -t :+
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
#set -g status-bg black
set -g status-fg white
set -g status-interval 1
# vi-style controls for copy mode