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
|
@ -55,6 +55,13 @@ in
|
|||
cmd = mkOption {
|
||||
type = with types; nullOr (listOf str);
|
||||
default = if (cfg.package or null) != null then cmd cfg else null;
|
||||
description = ''
|
||||
A list where each entry corresponds to the blankspace delimited part of the command that
|
||||
launches the server.
|
||||
|
||||
The first entry is the binary used to run the language server.
|
||||
Additional entries are passed as arguments.
|
||||
'';
|
||||
};
|
||||
|
||||
filetypes = helpers.mkNullOrOption (types.listOf types.str) ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue