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 != { }) ''
-- Highlight groups {{
do
@ -40,7 +40,7 @@ with lib;
end
-- }}
'') ++
(optionalString (config.matches != { }) ''
(optionalString (config.match != { }) ''
-- Match groups {{
do
local match = ${helpers.toLuaObject config.match}