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

12 lines
166 B
Nix
Raw Normal View History

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