]> git.phdru.name Git - dotfiles.git/commitdiff
.tmux.conf: vim-like navigation
authorOleg Broytman <phd@phdru.name>
Sat, 1 Apr 2017 12:43:49 +0000 (15:43 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 1 Apr 2017 12:43:49 +0000 (15:43 +0300)
.tmux.conf

index 0984038332f49fecd547fe952efd7505c8fbffa3..ae1849a4a391fc09aef5d5e959a0f876993d8f59 100644 (file)
@@ -59,6 +59,17 @@ set-option -g history-limit 1000
 # <prefix> R to reload config without restart
 bind-key R source-file ~/.tmux.conf \; display "Reloaded!"
 
+# vim-like navigation
+unbind-key h; bind-key h select-pane -L
+unbind-key j; bind-key j select-pane -D
+unbind-key k; bind-key k select-pane -U
+unbind-key l; bind-key l select-pane -R
+
+bind H resize-pane -L 10
+bind J resize-pane -D 10
+bind K resize-pane -U 10
+bind L resize-pane -R 10
+
 # Set the command prefix to match GNU screen (CTRL+a)
 # set-option -g prefix C-a
 #