mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
modules/highlights: fix typo
This commit is contained in:
parent
2f2f724f6a
commit
d3b63cafbb
1 changed files with 2 additions and 2 deletions
|
@ -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}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue