10 lines
269 B
Text
10 lines
269 B
Text
# remap prefix from 'C-b' to 'C-a'
|
|
unbind C-b
|
|
set-option -g prefix C-a
|
|
bind-key C-a send-prefix
|
|
|
|
# reload config file (change file location to your the tmux.conf you want to use)
|
|
bind r source-file ~/.tmux.conf
|
|
|
|
# Enable mouse mode (tmux 2.1 and above)
|
|
set -g mouse on
|