-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
39 lines (32 loc) · 904 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
unbind C-b
set-option -g prefix C-a
bind-key C-a last-window
set -g default-terminal "screen-256color"
set -g base-index 1
set -g status-bg default
set -g status-fg white
set -g status-attr bright
set -g status-left ""
set -g status-right "#[fg=cyan]#h"
set-window-option -g window-status-current-fg white
set-window-option -g window-status-current-bg red
set-window-option -g window-status-current-attr dim
unbind %
bind | split-window -h
bind - split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind H resize-pane -L 5
bind J resize-pane -D 5
bind K resize-pane -U 5
bind L resize-pane -R 5
setw -g mode-mouse off
set -g mouse-select-pane off
set -g mouse-resize-pane off
set -g mouse-select-window off
bind-key a send-prefix
setw -g aggressive-resize on
set -s escape-time 1
bind r source-file ~/.tmux.conf \; display ".tmux.conf reloaded"