mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-20 17:02:25 +00:00
14 lines
271 B
Nix
14 lines
271 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib.options) mkEnableOption mkOption;
|
||
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
||
|
in {
|
||
|
options.vim.mini.animate = {
|
||
|
enable = mkEnableOption "mini.animate";
|
||
|
setupOpts = mkPluginSetupOption "mini.animate" {};
|
||
|
};
|
||
|
}
|