-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
62 lines (48 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# For tmux <= 2.1
set -g default-terminal "screen-256color"
# set window notifications
setw -g monitor-activity on
set -g visual-activity on
# set vi keybindings
set-window-option -g mode-keys vi
# remap PREFIX to C-a
set -g prefix C-a
# send C-a
bind C-a send-prefix
# change default delay
set -sg escape-time 0
# move between panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# resize panes
bind H resize-pane -L 5
bind J resize-pane -D 5
bind K resize-pane -U 5
bind L resize-pane -R 5
# highlight active pane
set -g pane-border-fg green
set -g pane-border-bg black
set -g pane-active-border-fg white
set -g pane-active-border-bg yellow
# status bar
set -g status-fg white
set -g status-bg black
# set the color of the window list
setw -g window-status-fg cyan
setw -g window-status-bg default
setw -g window-status-attr dim
# set colors for the active window
setw -g window-status-current-fg white
setw -g window-status-current-bg red
setw -g window-status-current-attr bright
# Command / message line
set -g message-fg white
set -g message-bg black
set -g message-attr bright
# Reload the file with Prefix r
bind r source-file ~/.tmux.conf \; display "Reloaded!"Reloaded
# Start windows and panes at 1, not 0
set -g base-index 1
setw -g pane-base-index 1