This can quickly be huge if you have a lot of variables in your config. A better solution would be to list variables per files like so :
"bombadil.d/vars.toml" :
alacritty_background: #292C3E
wob_border_color: #FF6D7070
"bombadil/another_varfile.toml" :
foreground: #EBEBEB
magenta: #8763B8
# and so on
Even better we could add info regarding indirection (variable reference) :
"bombadil.d/vars.toml" :
alacritty_background: %background # here the value should be colored
wob_border_color: #FF6D7070
"bombadil/another_varfile.toml" :
background: #EBEBEB # here the key should have the same color
magenta: #8763B8
# and so on
Currently listing variables output the following :
This can quickly be huge if you have a lot of variables in your config. A better solution would be to list variables per files like so :
Even better we could add info regarding indirection (variable reference) :