blob: 0194bdeaea1c998c69bdf44861f0c6c56c9e1d7b (
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
29
|
set -g prefix ^z
unbind C-b
set -g default-terminal "screen-256color"
set -g mouse-select-pane on
set -g history-limit 4096
set -g status on
set -g set-titles on
set -g renumber-windows on
setw -g utf8 on
setw -g aggressive-resize on
set -g escape-time 50
bind f send-prefix
bind ^F choose-window
bind ^N new-window
bind ^D detach-client
bind ^[ copy-mode
bind | split-window -h
bind - split-window -v
new-session -s work
new-session -s main
new-session -s misc
set -g status-right '#h'
set -g status-bg white
set -g status-fg black
|