blob: 393c7bcb5a556c3dd41c1819640f7843a9a2e2fb (
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
|
set -g prefix C-z
unbind C-b
set -g mouse-select-pane on
setw -g aggressive-resize on
# emacs binding
set -gw mode-keys emacs
# status
set -g status on
set -g status-left-length 50
set -g status-right-length 50
set-option -g status-left '#h:[#S]'
set -g status-right "%H:%M %d-%h-%Y"
setw -g window-status-current-format "|#I:#W|"
set-window-option -g automatic-rename off
# listen to alerts from all windows
set -g bell-action any
new-session -s work
new-session -s personal
|