10 lines
167 B
Plaintext
10 lines
167 B
Plaintext
|
set mouse on
|
||
|
|
||
|
# Set the prefix to Ctrl+a
|
||
|
set -g prefix C-a
|
||
|
|
||
|
# Remove the old prefix
|
||
|
unbind C-b
|
||
|
|
||
|
# Send Ctrl+a to applications by pressing it twice
|
||
|
bind C-a send-prefix
|