-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.tmux.conf
100 lines (69 loc) · 2.09 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
##
# Settings
# Setting prefix
set -g prefix C-a
# CTRL a twice will send CTRL a to applications running within tmux
bind C-a send-prefix
# Free the original prefix
unbind C-b
# Setting the delay between prefix and command
set -s escape-time 1
# Set the base index for windows/panes to 1 instead of 0
set -g base-index 1
setw -g pane-base-index 1
# Don't let tmux rename windows based on their content
set -g allow-rename off
########
##
# Key bindings
# PREFIX r = reload configuration
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# PREFIX | = vertical split
# PREFIX - = horizontal split
bind | split-window -h
bind - split-window -v
# PREFIX + = promote pane to window
bind + break-pane
# PREFIX h,j,k,l = move between panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# PREFIX H,J,K,L = resize panes (in increments of 5)
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
########
##
# Theme
# Set the default terminal mode to 256color mode
set -g default-terminal "screen-256color"
# Enable truecolour support
set-option -ga terminal-overrides ",xterm-256color:Tc"
# Set the default fg and bg colors for the status bar
set -g status-style fg=white,bg=black
# Set the color of the window list
setw -g window-status-style fg=colour33,bg=black
# set colors for the active window
setw -g window-status-current-style fg=yellow,bold,bg=black
# active pane normal, inactive panes shaded out
setw -g window-style fg=colour240,bg=colour235
setw -g window-active-style fg=white,bg=colour235
# Command / message line
set -g message-style fg=white,bg=black
########
##
# Status bar
set -g status-left "#[fg=green][#S] "
set -g status-left-length 40
set -g status-justify centre
set -g status-right "#[fg=cyan]%d %b %R"
# Update the status line every thirty seconds (default to 15 seconds if this is commented out)
# set -g status-interval 30
# enable activity alerts
setw -g monitor-activity on
set -g visual-activity off
setw -g window-status-activity-style fg=cyan,bg=black
# enable mouse
setw -g mouse on