config, render: scrollback indicator: allow configuring scrollback indicator colors

This commit is contained in:
feeptr@codeberg.org 2021-09-27 19:05:40 +00:00
parent 7704bea876
commit 650cfa18ef
3 changed files with 27 additions and 1 deletions

View file

@ -163,9 +163,15 @@ struct config {
uint32_t bg;
} jump_label;
struct {
uint32_t fg;
uint32_t bg;
} scrollback_indicator;
struct {
bool selection:1;
bool jump_label:1;
bool scrollback_indicator:1;
bool url:1;
} use_custom;
} colors;