1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-doc/default.nix
2025-11-02 12:32:08 +00:00

17 lines
312 B
Nix

{
empty = {
plugins.mini-doc.enable = true;
};
defaults = {
plugins.mini-doc = {
enable = true;
settings = {
annotation_pattern = "^%-%-%-(%S*) ?";
default_section_id = "@text";
script_path = "scripts/minidoc.lua";
silent = true;
};
};
};
}