mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 23:42:47 +01:00
15 lines
317 B
Nix
15 lines
317 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "mini-animate";
|
|
moduleName = "mini.animate";
|
|
|
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
|
|
|
settingsExample = {
|
|
cursor.enable = true;
|
|
scroll.enable = true;
|
|
resize.enable = true;
|
|
open.enable = true;
|
|
close.enable = true;
|
|
};
|
|
}
|