mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +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";
|
||||
example = ''
|
||||
highlight = {
|
||||
Comment.fg = '#ff0000';
|
||||
Comment.fg = "#ff0000";
|
||||
};
|
||||
'';
|
||||
};
|
||||
|
@ -23,7 +23,7 @@ with lib; {
|
|||
description = "Define match groups";
|
||||
example = ''
|
||||
match = {
|
||||
ExtraWhitespace = '\\s\\+$';
|
||||
ExtraWhitespace = "\\s\\+$";
|
||||
};
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue