Set background dark option by default

* User can still make the background transparent using `set background default`
or `set background transparent` option.
This commit is contained in:
Kaian 2015-03-16 11:08:52 +01:00
parent 46542223a5
commit 6b6967679e
2 changed files with 3 additions and 2 deletions

View File

@ -7,8 +7,8 @@
##-----------------------------------------------------------------------------
## Enable color on or off
# set color on
## Use white/black as foreground/background instead of terminal defaults
# set background dark
## Use default foreground and background colors of your terminal
# set background default
## Disable syntax highlighting
# set syntax off
## Or enable branch/tag highlighting

View File

@ -54,6 +54,7 @@ init_options()
set_option_value("color.request", "on");
set_option_value("color.callid", "off");
set_option_value("color.cseq", "off");
set_option_value("background", "dark");
// Highlight options
set_option_value("syntax", "on");