blob: 72ea65b824875acfc63a3e8fc8990403cf664adf (
plain)
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
|
# act like vim
setw -g mode-keys vi
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind-key -r C-h select-window -t :-
bind-key -r C-l select-window -t :+
# look good
set -g default-terminal "screen-256color"
# status
set -g status-left-length 32
set -g status-right-length 150
set -g status-left ''
set -g status-right '#[fg=white,bg=black] #S '
set-option -g set-titles on
# #H Hostname of local host
# #I Current window index
# #P Current pane index
# #S Session name
# #T Current window title
# #W Current window name
# ## A literal ‘#’
set -g set-titles-string '#T -- #W'
set-window-option -g automatic-rename on
set-option -g status-interval 1
set-option -g history-limit 10000
|