Fri, 30 Sep 2016 21:32:08 -0400
Split screen and vim keybinds into files
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 | |
279 | 21 | set -g set-titles on |
22 | set -g set-titles-string "#h(#S)" | |
23 | ||
402
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
24 | |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
25 | source-file ~/.tmux/screen-keys.conf |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
26 | source-file ~/.tmux/vim-keys.conf |
cb0889a78173
Split screen and vim keybinds into files
Meredith Howard <mhoward@roomag.org>
parents:
401
diff
changeset
|
27 | |
399
eccd268e79e0
check for .tmux.conf.local
Meredith Howard <mhoward@roomag.org>
parents:
298
diff
changeset
|
28 | if-shell '[-e ~/.tmux.conf.local]' "source ~/.tmux.conf.local" |
192 | 29 |