summaryrefslogtreecommitdiff
path: root/tmux.conf
blob: 4b8fba5817b2fcc6ffeba13900f53caa2450024f (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
unbind C-b
set -g prefix C-a

set -g mode-keys vi
set -g history-limit 10000

bind C-a last-window

bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R

bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5

bind -r C-h select-window -t :-
bind -r C-l select-window -t :+

set -g status-bg "color0"
set -g status-fg "color7"
set -g status-right "%H:%M"
set-window-option -g window-status-current-style "bg=color4,fg=color7"