1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/modules/highlight.nix

16 lines
233 B
Nix

{
example = {
opts.termguicolors = true;
highlight = {
MacchiatoRed.fg = "#ed8796";
};
highlightOverride = {
Normal.fg = "#ff0000";
# With raw
Normal.bg.__raw = "'#00ff00'";
};
};
}