-
Notifications
You must be signed in to change notification settings - Fork 1
/
tmux.conf
38 lines (34 loc) · 1.07 KB
/
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
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
bind -n M-h select-pane -L
bind -n M-l select-pane -R
bind -n M-k select-pane -U
bind -n M-j select-pane -D
bind-key J resize-pane -D 5
bind-key K resize-pane -U 5
bind-key H resize-pane -L 5
bind-key L resize-pane -R 5
set -g mouse on
set -g base-index 1
setw -g pane-base-index 1
setw -g monitor-activity on
set -g escape-time 20
set-window-option -g mode-keys vi
set -g default-terminal "tmux-256color"
# default statusbar colors
set -g status-fg white
set -g status-bg colour141
set -g status-style bright
# default window title colors
set-window-option -g window-status-style fg=white
set-window-option -g window-status-style bg=default
set-window-option -g window-status-style dim
# active window title colors
set-window-option -g window-status-current-style fg=white
set-window-option -g window-status-current-style bg=default
set-window-option -g window-status-current-style bright
set-window-option -g window-status-current-style bold
# Highlight active window
set-window-option -g window-status-current-style bg=default