mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
misc: ensure all options have a description
This commit is contained in:
parent
3be9db71c2
commit
7a2d065cce
13 changed files with 127 additions and 43 deletions
|
@ -17,7 +17,20 @@ let
|
|||
(listOf (
|
||||
either str (submodule {
|
||||
options = {
|
||||
priority = mkOption { type = int; };
|
||||
priority = mkOption {
|
||||
type = ints.unsigned;
|
||||
description = ''
|
||||
Filename patterns can specify an optional priority to resolve cases when a file path
|
||||
matches multiple patterns.
|
||||
|
||||
Higher priorities are matched first.
|
||||
When omitted, the priority defaults to 0.
|
||||
|
||||
A pattern can contain environment variables of the form `"''${SOME_VAR}"` that will
|
||||
be automatically expanded.
|
||||
If the environment variable is not set, the pattern won't be matched.
|
||||
'';
|
||||
};
|
||||
};
|
||||
})
|
||||
))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue