mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
17 lines
312 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|