mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
docs: optionally add a description to plugins
This commit is contained in:
parent
2d4ebda245
commit
848543d527
4 changed files with 24 additions and 7 deletions
|
@ -35,6 +35,7 @@ with lib; rec {
|
|||
maintainers,
|
||||
url ? defaultPackage.meta.homepage,
|
||||
imports ? [],
|
||||
description ? null,
|
||||
# deprecations
|
||||
deprecateExtraOptions ? false,
|
||||
optionsRenamedToSettings ? [],
|
||||
|
@ -62,7 +63,11 @@ with lib; rec {
|
|||
meta = {
|
||||
inherit maintainers;
|
||||
nixvimInfo = {
|
||||
inherit name url;
|
||||
inherit
|
||||
description
|
||||
name
|
||||
url
|
||||
;
|
||||
kind = namespace;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue