summary refs log tree commit diff
path: root/tmux.conf
blob: 1c950a62005f9f5c6721bcb5b3c932f8b650a7ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Prefix
set-option -g prefix C-z
unbind-key C-b
bind C-t send-prefix

# show the status
set -g status on

# split window
bind _ split-window -v -c "#{pane_current_path}"
bind | split-window -h -c "#{pane_current_path}"

# Option
set-window-option -g mode-keys vi

# 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