summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-04-28 18:22:32 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-04-28 18:22:32 +0000
commit99e54f46c7d3798aea00f5c8c791dd1b66a8d5d7 (patch)
tree5e334834c2f17ebfde390fa3b5a42a1b26cc4677 /tmux.c
parent2240199dbf6dd66eaada95ffdb021c844bc23c12 (diff)
Make the active pane border have a green foreground instead of
background by default.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index 9feeb300..741ee38e 100644
--- a/tmux.c
+++ b/tmux.c
@@ -355,8 +355,8 @@ 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-active-border-bg", 8);
+ options_set_number(so, "pane-active-border-fg", 2);
options_set_number(so, "pane-border-bg", 8);
options_set_number(so, "pane-border-fg", 8);
options_set_number(so, "repeat-time", 500);