Sun, 23 Oct 2016 00:28:50 -0400
match gvim here too
192 | 1 | # Look good |
278 | 2 | set -g default-terminal "screen-256color" |
192 | 3 | |
236
5f84469c2b05
imported patch mhoward-mbp
Meredith Howard <mhoward@roomag.org>
parents:
194
diff
changeset
|
4 | set -g mouse on |
5f84469c2b05
imported patch mhoward-mbp
Meredith Howard <mhoward@roomag.org>
parents:
194
diff
changeset
|
5 | |
192 | 6 | # Start tab numbering at 1 |
7 | set -g base-index 1 | |
278 | 8 | set -g pane-base-index 1 |
9 | set -g renumber-windows on | |
192 | 10 | |
11 | # Allows for faster key repetition | |
278 | 12 | set -sg escape-time 0 |
192 | 13 | |
278 | 14 | set -g pane-border-style bg=colour232,fg=colour235 |
15 | set -g pane-active-border-style bg=colour232,fg=colour239 | |
16 | set -g window-active-style bg=colour232 | |
17 | ||
18 | set -g status-bg colour235 | |
19 | set -g status-fg cyan | |
192 | 20 | |
403 | 21 | set -g status-left " #S " |
22 | set -g status-left-bg colour237 | |
23 | ||
24 | set -g status-right " #{=21:pane_title} %m-%d %H:%M " | |
25 | set -g status-right-bg colour237 | |
26 | ||
27 | set -g window-status-format " #I:#W#F " | |
28 | set -g window-status-current-format " #I:#W#F " | |
407
f3ddcd72fa62
try something more subtle
Meredith Howard <mhoward@roomag.org>
parents:
405
diff
changeset
|
29 | set -g window-status-current-bg colour234 |
403 | 30 | |
279 | 31 | set -g set-titles on |
32 | set -g set-titles-string "#h(#S)" | |
33 | ||
402
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
34 | |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
35 | source-file ~/.tmux/screen-keys.conf |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
36 | source-file ~/.tmux/vim-keys.conf |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
37 | |
404 | 38 | if-shell 'test -e ~/.tmux.conf.local' "source ~/.tmux.conf.local" |
192 | 39 |