nix-community.nixvim/tests/test-sources/modules/highlight.nix

17 lines
233 B
Nix
Raw Normal View History

2023-03-22 07:42:02 +01:00
{
example = {
opts.termguicolors = true;
2023-03-22 07:42:02 +01:00
highlight = {
MacchiatoRed.fg = "#ed8796";
};
highlightOverride = {
2023-03-22 07:42:02 +01:00
Normal.fg = "#ff0000";
# With raw
Normal.bg.__raw = "'#00ff00'";
2023-03-22 07:42:02 +01:00
};
};
}