colorizer: add example

This commit is contained in:
Ching Pei Yang 2024-05-12 02:18:04 +02:00
parent 82e92a56da
commit 7d9f1e0481
1 changed files with 8 additions and 1 deletions

View File

@ -109,9 +109,16 @@ in {
description = '' description = ''
Filetypes to enable on and their option overrides. Filetypes to enable on and their option overrides.
The special filetype "*" means enable on all filetypes. "*" means enable on all filetypes. Filetypes prefixed with "!" are disabled.
''; '';
default = {}; default = {};
example = {
"*" = {};
"!vim" = {};
javascript = {
AARRGGBB = false;
};
};
type = submodule { type = submodule {
freeformType = attrsOf settingSubmodule; freeformType = attrsOf settingSubmodule;
}; };