16 lines
274 B
Plaintext
16 lines
274 B
Plaintext
# Remap leader to ctrl+a
|
|
unbind C-b
|
|
set-option -g prefix C-p
|
|
bind-key C-p send-prefix
|
|
|
|
# Quick release config file
|
|
bind r source-file ~/.tmux.conf
|
|
|
|
# Enable mouse usage
|
|
set -g mouse on
|
|
|
|
bind h select-pane -L
|
|
bind j select-pane -D
|
|
bind k select-pane -U
|
|
bind l select-pane -R
|