modules/highlights: fix typo

This commit is contained in:
Pedro Alves 2023-01-21 17:21:12 +00:00
parent 2f2f724f6a
commit d3b63cafbb

View file

@ -28,7 +28,7 @@ with lib;
}; };
}; };
config = mkIf (config.highlight != { } || config.matches != { }) { config = mkIf (config.highlight != { } || config.match != { }) {
extraConfigLuaPost = (optionalString (config.highlight != { }) '' extraConfigLuaPost = (optionalString (config.highlight != { }) ''
-- Highlight groups {{ -- Highlight groups {{
do do
@ -40,7 +40,7 @@ with lib;
end end
-- }} -- }}
'') ++ '') ++
(optionalString (config.matches != { }) '' (optionalString (config.match != { }) ''
-- Match groups {{ -- Match groups {{
do do
local match = ${helpers.toLuaObject config.match} local match = ${helpers.toLuaObject config.match}