From 16db91b37abbfded3c61822cd6d7a854954c6b2a Mon Sep 17 00:00:00 2001 From: Saien Govender <35043617+saitheninja@users.noreply.github.com> Date: Wed, 19 Jun 2024 15:39:50 +0200 Subject: [PATCH] Fix typo in highlights.nix Example of highlightOverride used incorrect option name. --- modules/highlights.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/highlights.nix b/modules/highlights.nix index 755d8e99..5791d298 100644 --- a/modules/highlights.nix +++ b/modules/highlights.nix @@ -23,7 +23,7 @@ with lib; default = { }; description = "Define highlight groups to override existing highlight"; example = '' - highlight = { + highlightOverride = { Comment.fg = "#ff0000"; }; '';