blob: c7b76db3d1e9bf81e6bc800ce529babd65bb6286 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Prefix
set-option -g prefix C-z
unbind-key C-b
bind C-t send-prefix
# show the status
set -g status on
# Option
set-window-option -g mode-keys emacs
# renumber window
set-option -g renumber-windows on
# rename the window
set-option -g allow-rename on
# start at 1
set-option -g base-index 1
|