mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +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 != { }) ''
|
||||
-- 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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue