summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-01-03 12:51:05 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-01-03 12:51:05 +0000
commit7e4f8b45b64b0cbe889c5846806038c4c45c36e8 (patch)
treec7c25f6c65f3dac1a9b40fe5e4e8cf8f23bdb6e0 /tmux.c
parent121ba57b55adc9aff5b131cfac310ac41c0491ba (diff)
Options to set the colour of the pane borders, with different colours for the
active pane.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux.c b/tmux.c
index 0e080306..24aa24f6 100644
--- a/tmux.c
+++ b/tmux.c
@@ -339,6 +339,10 @@ main(int argc, char **argv)
options_set_number(so, "message-fg", 0);
options_set_number(so, "message-limit", 20);
options_set_number(so, "mouse-select-pane", 0);
+ options_set_number(so, "pane-active-border-bg", 2);
+ options_set_number(so, "pane-active-border-fg", 8);
+ options_set_number(so, "pane-border-bg", 8);
+ options_set_number(so, "pane-border-fg", 8);
options_set_number(so, "repeat-time", 500);
options_set_number(so, "set-remain-on-exit", 0);
options_set_number(so, "set-titles", 0);