-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
62 lines (52 loc) · 1.95 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
# Default statusbar colors
set-option -g status-bg colour235 #base02
set-option -g status-fg colour75
set-option -g status-attr default
set-option -g status-justify centre
set-option -g status-left '[Think Big]'
set-option -g status-left-length 25
# Default window title colors
set-window-option -g window-status-fg colour244 #base0
set-window-option -g renumber-windows on
set-window-option -g allow-rename off
set-window-option -g automatic-rename off
# Active window title colors
set-window-option -g window-status-current-fg colour166 #orange
set-window-option -g window-status-current-bg colour232
set-window-option -g window-status-current-attr bright
set-window-option -g window-status-current-attr default #bold #the status highlighted text
# Pane border
set-option -g pane-border-fg colour166
set-option -g pane-active-border-bg colour235
set-option -g pane-active-border-fg colour166
# Message text
set-option -g message-bg colour235 #base02
set-option -g message-fg colour166 #orange
# Pane number display
set-option -g display-panes-active-colour colour75 #blue
set-option -g display-panes-colour colour245 #orange
# Clock
set-window-option -g clock-mode-colour colour64 #green
# Mouse
# If you have tmux prior to 1.9 uncomment the following line:
# set-window-option -g mode-mouse on
# set-option -g mode-mouse on
# set-option -g mouse-resize-pane on
# set-option -g mouse-select-pane on
# set-option -g mouse-select-window on
set-option -g mouse on
# Key binding
bind-key -n C-t new-window
bind-key -n C-h split-window
bind-key -n C-v split-window -h
bind-key -n C-Space next-layout
bind-key -n PgDn next-window
bind-key -n PgUp previous-window
bind-key -n C-k kill-window
bind-key -n C-x detach
# set a history limit
set -g history-limit 999999999
# Ser vi for copy mode
set -g mode-keys vi
# To be able to copy to your clipboard, first install xclip pkg
bind -T copy-mode-vi y send-keys -X copy-pipe 'xclip -in -selection clipboard'