forked from Mirrors/sngrep
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:
parent
46542223a5
commit
6b6967679e
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue