-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
40 lines (34 loc) · 953 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
set-option -g base-index 1
set-option -g display-time 100000
set-option -g repeat-time 1000
set-option -g status-keys vi
set-option -g status-right "#(name)"
set-option -g status-right-length 10
set-window-option -g window-status-current-bg red
set-window-option -g automatic-rename off
set-window-option -g mode-keys vi
set-window-option -g utf8 off
set-option -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
unbind '"'
bind - splitw -v
unbind %
bind | splitw -h
bind k selectp -U
bind j selectp -D
bind h selectp -L
bind l selectp -R
bind ^k resizep -U 10
bind ^j resizep -D 10
bind ^h resizep -L 10
bind ^l resizep -R 10
bind -n 'F11' prev
bind -n 'F12' next
bind -n 'F8' kill-window
bind -n 'F9' neww
bind -n 'F10' rename-window
set -g status-bg black
set -g status-fg yellow
bind-key z kill-session
bind-key v select-layout even-vertical