-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
42 lines (32 loc) · 910 Bytes
/
.tmux.conf
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
30
31
32
33
34
35
36
37
38
39
40
41
set-option -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
#command delay
set-option -s escape-time 1
#window & pane index
set-option -g base-index 1
setw -g pane-base-index 1
#reload config
bind-key r source-file ~/.tmux.conf \; display "~/.tmux.conf reloaded!"
#Pane nagivation
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
#Window navigation
bind-key -r C-h select-window -t :-
bind-key -r C-l select-window -t :+
bind-key H resize-pane -L 10
bind-key J resize-pane -D 10
bind-key K resize-pane -U 10
bind-key L resize-pane -R 10
set-option -g default-terminal "screen-256color"
#status bar
set-option -g status-justify centre
set-option -g status-fg white
set-option -g status-bg cyan
set-option -g status-left-length 20
set-option -g status-interval 5
#activity alerts
set-option -g visual-activity on
setw -g monitor-activity on