-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
81 lines (58 loc) · 1.79 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
# Plugins
set -g @plugin 'thewtex/tmux-mem-cpu-load'
# Setting the prefix from C-b to C-a
set -g prefix C-a
# Free Ctrl-b prefix
unbind C-b
# Set the delay between prefix and command
set -s escape-time 1
# Reload Config
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# Ensure that we can send Ctrl-A to other apps
bind C-a send-prefix
# Splitting panes
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
# moving between panes
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Quick window selection
bind -r C-h select-window -t :-
bind -r C-l select-window -t :+
# Pane resizing
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
# Mouse support
set -g mouse off
# Colors
set -g default-terminal "screen-256color"
# Set status line's colors
set -g status-style fg=black,dim,bg=white
# set the color of the window list
setw -g window-status-style fg=black,bg=white
# set colors for the active window
setw -g window-status-current-style fg=black,bold,bg=white
# colors for pane boarders
#setw -g pane-border-style fg=green,bg=black
#setw -g pane-active-border-style fg=white,bg=yellow
# active pane normal, other shaded out
#setw -g window-style fg=colour102,bg=colour235
#setw -g window-active-style fg=white,bg=black
# Toggle themes
bind t run-shell ~/.tmux-theme-toggler
# Command / message line
set -g message-style fg=black,bold,bg=white
# Status line left side
set -g status-left-length 40
set -g status-left "#[fg=black]Session: #S #[fg=black]#I #[fg=black]#P"
# Status Line right side
set -g status-right "#[fg=black]%d %b %R"
# Center the window list
set -g status-justify centre
# activity alerts
setw -g monitor-activity on
set -g visual-activity on