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