nvf/modules/plugins/hydra/hydra.nix
Joseph Hanson 09695f4fd4
feat: add multicursors-nvim plugin
multicursors-nvim with hydra dependency and static config.
2025-02-07 20:24:46 -06:00

8 lines
205 B
Nix

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