mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
modules/highlight: use double quotes in examples
This commit is contained in:
parent
e159e3f75e
commit
903e2a1ccb
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ with lib; {
|
||||||
description = "Define highlight groups";
|
description = "Define highlight groups";
|
||||||
example = ''
|
example = ''
|
||||||
highlight = {
|
highlight = {
|
||||||
Comment.fg = '#ff0000';
|
Comment.fg = "#ff0000";
|
||||||
};
|
};
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
@ -23,7 +23,7 @@ with lib; {
|
||||||
description = "Define match groups";
|
description = "Define match groups";
|
||||||
example = ''
|
example = ''
|
||||||
match = {
|
match = {
|
||||||
ExtraWhitespace = '\\s\\+$';
|
ExtraWhitespace = "\\s\\+$";
|
||||||
};
|
};
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue