summaryrefslogtreecommitdiffstats
path: root/tmux.conf
blob: 56dcacd93e1234ad858d15bf1d3783815ebb107d (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
24
25
26
27
28
# bells in any window get sent to the terminal
set  -g bell-action   any

# lots of scrollback
set  -g history-limit 4096

# use ^A rather than ^B for the prefix key
set  -g prefix        ^A

# hide the statusbar by default
set  -g status        off

# use vi keybindings
setw -g mode-keys     vi
set  -g status-keys   vi

# use utf8
setw -g utf8          on

# keybindings
bind-key  a send-prefix
bind-key ^A choose-window
bind-key ^C new-window
bind-key ^D detach-client
bind-key ^S set status

unbind-key ^B
unbind-key w