nvf/modules/plugins/hydra/hydra.nix
Joe Hanson 6b0f11006b
Update modules/plugins/hydra/hydra.nix
place hydra plugin in utility folder

Co-authored-by: raf <raf@notashelf.dev>
2025-02-12 10:17:07 -06:00

8 lines
225 B
Nix

{lib, ...}: let
#inherit (lib) types;
inherit (lib.options) mkEnableOption;
in {
options.vim.utility.hydra = {
enable = mkEnableOption "utility for creating custom submodes and menus [nvimtools/hydra.nvim]";
};
}