mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
14 lines
319 B
Nix
14 lines
319 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "mini-doc";
|
|
moduleName = "mini.doc";
|
|
|
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
|
|
|
settingsExample = {
|
|
annotation_pattern = "^%-%-%-(%S*) ?";
|
|
default_section_id = "@text";
|
|
script_path = "scripts/minidoc.lua";
|
|
silent = true;
|
|
};
|
|
}
|