Sun, 24 Feb 2019 00:40:58 -0500
clean up list/fill chars
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 | |
736
cb71e01111a5
slightly longer escape-time
Meredith Howard <mhoward@roomag.org>
parents:
582
diff
changeset
|
12 | set -sg escape-time 10 |
192 | 13 | |
582
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
14 | set -g pane-border-style bg=colour232,fg=colour235 |
278 | 15 | 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
|
16 | set -g window-active-style bg=colour232 |
278 | 17 | |
582
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
18 | set -g status-style bg=colour235,fg=cyan |
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
19 | set -g message-style bg=colour235,fg=white |
7ec3dc00d06d
style more of the innards
Meredith Howard <mhoward@roomag.org>
parents:
581
diff
changeset
|
20 | 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
|
21 | set -g mode-style bg=colour173,fg=black,dim |
192 | 22 | |
403 | 23 | set -g status-left " #S " |
24 | set -g status-left-bg colour237 | |
25 | ||
26 | set -g status-right " #{=21:pane_title} %m-%d %H:%M " | |
27 | set -g status-right-bg colour237 | |
28 | ||
29 | set -g window-status-format " #I:#W#F " | |
30 | set -g window-status-current-format " #I:#W#F " | |
407
f3ddcd72fa62
try something more subtle
Meredith Howard <mhoward@roomag.org>
parents:
405
diff
changeset
|
31 | set -g window-status-current-bg colour234 |
403 | 32 | |
279 | 33 | set -g set-titles on |
34 | set -g set-titles-string "#h(#S)" | |
35 | ||
402
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
36 | source-file ~/.tmux/screen-keys.conf |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
37 | source-file ~/.tmux/vim-keys.conf |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
38 | |
581
dbe8e6709cd5
bring back choose-session
Meredith Howard <mhoward@roomag.org>
parents:
499
diff
changeset
|
39 | bind S choose-session |
dbe8e6709cd5
bring back choose-session
Meredith Howard <mhoward@roomag.org>
parents:
499
diff
changeset
|
40 | |
404 | 41 | if-shell 'test -e ~/.tmux.conf.local' "source ~/.tmux.conf.local" |
192 | 42 |