diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-07-23 23:47:15 +0100 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-07-23 23:47:48 +0100 |
commit | 80655fb1f066ece7a1d820ff542cf7413e838f1b (patch) | |
tree | f2e1cbee2695c422ebd39059dafb45510cbc75bf /tmux.conf | |
parent | 5b5d905824ad8ccf13f2a28cf8ef36f3e4b90c64 (diff) | |
download | dotfiles-80655fb1f066ece7a1d820ff542cf7413e838f1b.tar.gz dotfiles-80655fb1f066ece7a1d820ff542cf7413e838f1b.tar.bz2 dotfiles-80655fb1f066ece7a1d820ff542cf7413e838f1b.zip |
+tmux vim bindings for manipulation of windows
Diffstat (limited to 'tmux.conf')
-rw-r--r-- | tmux.conf | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,6 +1,13 @@ set -g base-index 1 set-option -g prefix C-a +set-window-option -g mode-keys vi set -g @themepack 'powerline/block/blue' +bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-h) || tmux select-pane -L" +bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D" +bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U" +bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-l) || tmux select-pane -R" +bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys 'C-\\') || tmux select-pane -l" + # List of plugins |