dotfiles.pub/_tmux.conf
2025-09-06 18:53:13 +02:00

13 lines
359 B
Text
Executable file

set -g mouse on
setw -g mode-keys vi # I especially like being able to search with /,? when in copy-mode
unbind C-b
set -g prefix C-b
bind C-b 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