forked from ryanb/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tmux.conf
295 lines (210 loc) · 6.76 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
# ~/.tmux.conf
#
# See the following files:
#
# /opt/local/share/doc/tmux/t-williams.conf
# /opt/local/share/doc/tmux/screen-keys.conf
# /opt/local/share/doc/tmux/vim-keys.conf
#
# URLs to read:
#
# http://blog.yjl.im/2009/11/migrating-to-tmux-from-gnuscreen.html
# http://blog.hawkhost.com/2010/06/28/tmux-the-terminal-multiplexer/
# http://blog.hawkhost.com/2010/07/02/tmux-%E2%80%93-the-terminal-multiplexer-part-2/
# http://www.dayid.org/os/notes/tm.html
#
# Other sample tmux.conf files
#
# http://www.mindfuzz.net/?p=178
#
# -----------------------------------------------------------------------------
# Global settings
#
set-window-option -g automatic-rename off
# Set prefix key to Ctrl-a
unbind-key C-b
set-option -g prefix C-a
# send the prefix to client inside window
bind-key a send-prefix
# toggle last window like screen
bind-key C-a last-window
# open a man page in new window
bind-key / command-prompt "split-window 'exec man %%'"
# quick view of processes
# brokerz
#bind-key "~" split-window -h "htop --sort-column \"CPU%\""
# scrollback buffer n lines
set -g history-limit 1000000
# listen for activity on all windows
set -g bell-action any
# start window indexing at zero (default)
set -g base-index 0
# tell tmux to use 256 colour terminal
set -g default-terminal "screen-256color"
# xterm-style function key sequences
setw -g xterm-keys on
# control automatic window renaming
setw -g automatic-rename off
# enable wm window titles
set -g set-titles on
# wm window title string (uses statusbar variables)
# brokerz
#set -g status-left "#H #S]"
set -g status-left-length 20
set -g status-left-fg yellow
# Key bindings
# reload settings
bind-key R source-file ~/.tmux.conf
# detach client
bind-key d detach
bind-key C-d detach
# choose a client to detach
bind-key D choose-client
# choose window/session
bind-key "'" choose-window
bind-key '"' choose-session
# display visible indicator of each pane
bind-key w display-panes
# vim-like pane selection
bind-key -r h select-pane -L
bind-key -r j select-pane -D
bind-key -r k select-pane -U
bind-key -r l select-pane -R
# swap panes
bind-key -r J swap-pane -D
bind-key -r K swap-pane -U
# kill current pane/window
bind-key q confirm-before kill-pane
bind-key Q confirm-before kill-window
# specific window layouts
bind -r y next-layout
#bind o select-layout "active-only"
#bind O select-layout "main-vertical"
# copying and pasting
bind-key [ copy-mode
bind-key ] paste-buffer
# vi-style controls for copy mode
setw -g mode-keys vi
# fix from Connor for 1.5
# setw -g mode-mouse off
# list all paste buffers (default key is '#')
bind-key b list-buffers
# choose buffer to paste interactively (default key was '=')
bind-key p choose-buffer
# delete the most recently copied buffer of text (default key was '-')
bind-key x delete-buffer
# move x clipboard into tmux paste buffer
bind C-p run "tmux set-buffer \"$(xclip -o -selection clip)\"; tmux paste-buffer"
# move tmux copy buffer into x clipboard
bind C-y run "tmux show-buffer | xclip -i -selection clip"
# Screen-like key bindings
# new window
bind-key C-c new-window
bind-key c new-window
# next
bind-key -r Space next-window
bind-key -r "C-Space" next-window
# prev
bind-key BSpace previous-window
# title (default key in tmux is ',')
bind-key A command-prompt "rename-window %%"
# quit
# brokerz
#bind-key \ confirm-before kill-server
# displays
bind-key * list-clients
# redisplay (default key in tmux is 'r')
bind-key r refresh-client
# Split windows like vim
# use mnemonics for horizontal/vertical splits
bind-key - split-window -v -c "#{pane_current_path}"
bind-key _ split-window -v -c "#{pane_current_path}"
bind-key | split-window -h -c "#{pane_current_path}"
#bind-key - split-window -v -c "$PWD"
#bind-key _ split-window -v -c "$PWD"
#bind-key | split-window -h -c "$PWD"
# resize panes like vim
bind-key -r < resize-pane -L 3
bind-key -r > resize-pane -R 3
bind-key -r + resize-pane -U 1
bind-key -r = resize-pane -D 1
# Statusbar settings
# toggle statusbar
bind-key s set status
# use vi-style key bindings in the status line
set -g status-keys vi
# amount of time for which status line messages and other indicators
# are displayed. time is in milliseconds.
set -g display-time 2000
#### COLOUR (Solarized 256)
# default statusbar colors
#set-option -g status-bg colour235 #base02
set-option -g status-bg default
set-option -g status-fg default #yellow
set-option -g status-attr default
# default window title colors
set-window-option -g window-status-fg colour244 #base0
set-window-option -g window-status-bg default
#set-window-option -g window-status-attr dim
# active window title colors
set-window-option -g window-status-current-fg colour166 #orange
set-window-option -g window-status-current-bg default
#set-window-option -g window-status-current-attr bright
# pane border
set-option -g pane-border-fg colour235 #base02
set-option -g pane-active-border-fg colour240 #base01
# 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 colour33 #blue
set-option -g display-panes-colour colour166 #orange
# clock
set-window-option -g clock-mode-colour colour64 #green
# Session initialization
# Note:
# new - alias for new-session
# neww - alias for new-window
# first session
#new -d -s0
#neww -d
#neww -d
#neww -d
# second session
#new -d -s1
#neww -d
#neww -d
#select-window -t1
bind-key M command-prompt "join-pane -h -s %%"
# switching sessions
bind-key C command-prompt "attach-session -t %%"
# -----------------------------------------------------------------------------
# vim: fen fdl=0 fdm=marker
#
# PERSONAL modifcations....
# =========================
#
bind-key z new-window -d -n tmux_zoom \; swap-pane -s tmux_zoom.0 \; select-window -t tmux_zoom
bind-key Z last-window \; swap-pane -s tmux_zoom.0 \; kill-window -t tmux_zoom
# Add the tmux battery indicator
set -g status-right 'Batt: #{battery_icon} #{battery_percentage} #{battery_remain} | %a %h-%d %H:%M '
set -g @continuum-restore 'on'
#set -g @continuum-boot 'on' # only on osx for now
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-battery'
#set -g @plugin 'tmux-plugins/tmux-sensible'
# Resurrection!
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Auto saves sessions
set -g @plugin 'tmux-plugins/tmux-continuum'
# for vim resurrection on powerdown
set -g @resurrect-strategy-vim 'session'
set -g @resurrect-strategy-nvim 'session'
set -g @plugin 'tmux-plugins/tmux-yank'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin '[email protected]/user/plugin'
# set -g @plugin '[email protected]/user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'