mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
Allows the docs to be a little less hard-coded. Lays the groundwork for splitting up the platform-specific option docs on a per-page basis.
14 lines
296 B
Nix
14 lines
296 B
Nix
{ lib, ... }:
|
|
{
|
|
options = {
|
|
enable = lib.mkEnableOption "nixvim";
|
|
|
|
meta.wrapper = {
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "The human-readable name of this nixvim wrapper. Used in documentation.";
|
|
internal = true;
|
|
};
|
|
};
|
|
};
|
|
}
|