12 lines
175 B
Bash
12 lines
175 B
Bash
# Remap prefix to ctrl + a
|
|
set -g prefix C-a
|
|
unbind C-b
|
|
bind C-a send-prefix
|
|
|
|
unbind r
|
|
bind r source-file ~/.tmux.conf
|
|
|
|
unbind ^A
|
|
bind ^A select-pane -t :.*
|
|
|
|
bind e copy-mode
|