mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
16 lines
236 B
Nix
16 lines
236 B
Nix
{
|
|
example = {
|
|
options.termguicolors = true;
|
|
|
|
highlight = {
|
|
MacchiatoRed.fg = "#ed8796";
|
|
};
|
|
|
|
highlightOverride = {
|
|
Normal.fg = "#ff0000";
|
|
|
|
# With raw
|
|
Normal.bg.__raw = "'#00ff00'";
|
|
};
|
|
};
|
|
}
|