Wed, 23 Aug 2017 15:49:42 -0400
the incessant ringing!
278 | 1 | set -g default-terminal "screen-256color" |
499 | 2 | set -g history-limit 6000 |
3 | set -g display-time 4000 | |
192 | 4 | |
236
5f84469c2b05
imported patch mhoward-mbp
Meredith Howard <mhoward@roomag.org>
parents:
194
diff
changeset
|
5 | set -g mouse on |
5f84469c2b05
imported patch mhoward-mbp
Meredith Howard <mhoward@roomag.org>
parents:
194
diff
changeset
|
6 | |
192 | 7 | # Start tab numbering at 1 |
8 | set -g base-index 1 | |
278 | 9 | set -g pane-base-index 1 |
10 | set -g renumber-windows on | |
192 | 11 | |
12 | # Allows for faster key repetition | |
278 | 13 | set -sg escape-time 0 |
192 | 14 | |
582
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
15 | set -g pane-border-style bg=colour232,fg=colour235 |
278 | 16 | set -g pane-active-border-style bg=colour232,fg=colour239 |
582
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
17 | set -g window-active-style bg=colour232 |
278 | 18 | |
582
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
19 | set -g status-style bg=colour235,fg=cyan |
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
20 | set -g message-style bg=colour235,fg=white |
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
21 | set -g message-command-style bg=colour235,fg=white,bold |
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
22 | set -g mode-style bg=colour173,fg=black,dim |
192 | 23 | |
403 | 24 | set -g status-left " #S " |
25 | set -g status-left-bg colour237 | |
26 | ||
27 | set -g status-right " #{=21:pane_title} %m-%d %H:%M " | |
28 | set -g status-right-bg colour237 | |
29 | ||
30 | set -g window-status-format " #I:#W#F " | |
31 | set -g window-status-current-format " #I:#W#F " | |
407
f3ddcd72fa62
try something more subtle
Meredith Howard <mhoward@roomag.org>
parents:
405
diff
changeset
|
32 | set -g window-status-current-bg colour234 |
403 | 33 | |
279 | 34 | set -g set-titles on |
35 | set -g set-titles-string "#h(#S)" | |
36 | ||
402
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
37 | source-file ~/.tmux/screen-keys.conf |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
38 | source-file ~/.tmux/vim-keys.conf |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
39 | |
581
dbe8e6709cd5
bring back choose-session
Meredith Howard <mhoward@roomag.org>
parents:
499
diff
changeset
|
40 | bind S choose-session |
dbe8e6709cd5
bring back choose-session
Meredith Howard <mhoward@roomag.org>
parents:
499
diff
changeset
|
41 | |
404 | 42 | if-shell 'test -e ~/.tmux.conf.local' "source ~/.tmux.conf.local" |
192 | 43 |