-
Notifications
You must be signed in to change notification settings - Fork 7
/
.tmux.conf
88 lines (64 loc) · 2.6 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
##################################
# TMUX CUSTOM CONFIGURATION FILE #
##################################
#
# Remap prefix to Screens
#set -g prefix C-a
#bind C-a send-prefix
#unbind C-b
# Quality of life stuff
set -g history-limit 50000
set -g allow-rename off
## Join Windows
bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'"
bind-key s command-prompt -p "join pane to:" "join-pane -t '%%'"
# Search Mode VI (default is emac)
set-window-option -g mode-keys vi
# git clone https://github.com/tmux-plugins/tmux-logging.git
run-shell /opt/tmux-logging/logging.tmux
# Plugins
set -g @plugin 'tmux-plugins/tmux-logging'
# Uses the default terminal color scheme for text
set -g default-terminal "screen-256color"
#### COLOUR (Solarized dark)
# default statusbar colors
set-option -g status-style fg=yellow,bg=black #yellow and base02
# default window title colors
set-window-option -g window-status-style fg=brightblue,bg=default #base0 and default
#set-window-option -g window-status-style dim
# active window title colors
set-window-option -g window-status-current-style fg=brightred,bg=default #orange and default
#set-window-option -g window-status-current-style bright
# pane border
set-option -g pane-border-style fg=black #base02
set-option -g pane-active-border-style fg=brightgreen #base01
# message text
set-option -g message-style fg=brightred,bg=black #orange and base01
# pane number display
set-option -g display-panes-active-colour blue #blue
set-option -g display-panes-colour brightred #orange
# clock
set-window-option -g clock-mode-colour green #green
# bell
set-window-option -g window-status-bell-style fg=black,bg=red #base02, red
#### COLOUR (Solarized 256)
# default statusbar colors
#set-option -g status-style fg=colour136,bg=colour235 #yellow and base02
# default window title colors
#set-window-option -g window-status-style fg=colour244,bg=default #base0 and default
#set-window-option -g window-status-style dim
# active window title colors
#set-window-option -g window-status-current-style fg=colour166,bg=default #orange and default
#set-window-option -g window-status-current-style bright
# pane border
#set-option -g pane-border-style fg=colour235 #base02
#set-option -g pane-active-border-style fg=colour240 #base01
# message text
#set-option -g message-style fg=colour166,bg=colour235 #orange and base02
# pane number display
#set-option -g display-panes-active-colour colour33 #blue
#set-option -g display-panes-colour colour166 #orange
# clock
#set-window-option -g clock-mode-colour colour64 #green
# bell
#set-window-option -g window-status-bell-style fg=colour235,bg=colour160 #base02, red