blob: d6593e5a805a089c0eccea17cdb8c297801554ad (
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
|
set -g default-terminal "screen-256color"
set-window-option -g automatic-rename on
set-option -g set-titles on
set-option -sg escape-time 10
set-option -g mouse off
set-window-option -g mode-keys vi
set -g prefix M-x
bind M-x send-prefix
set -g base-index 1
set-window-option -g pane-base-index 1
set -g renumber-windows on
set -g status-bg '#333333'
set -g status-fg '#ffffff'
set -g window-status-current-format "#[fg=#ffffff]#[bg=#111111]#[fg=#ffffff]#[bg=#111111] #I:#W #[fg=#ffffff]#[bg=#111111]"
set -g window-style 'bg=#181818'
set -g window-active-style 'bg=#111111'
bind-key Up select-pane -U
bind-key Down select-pane -D
bind-key Left select-pane -L
bind-key Right select-pane -R
|