Add _tmux.conf

This commit is contained in:
Oshgnacknak 2021-10-02 13:40:25 +02:00
parent c523a47eca
commit d884496276
Signed by: Oshgnacknak
GPG key ID: 8CB7375654585956

12
_tmux.conf Executable file
View file

@ -0,0 +1,12 @@
setw -g mode-keys vi # I especially like being able to search with /,? when in copy-mode
unbind C-b
set -g prefix C-w
bind C-w send-prefix
unbind-key j
bind-key j select-pane -D # Similar to 'C-w j' to navigate windows in Vim
unbind-key k
bind-key k select-pane -U
unbind-key h
bind-key h select-pane -L
unbind-key l
bind-key l select-pane -R