mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-10 23:45:31 +00:00
7 lines
201 B
Nix
7 lines
201 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.vim.utility.hydra = {
|
|
enable = mkEnableOption "utility for creating custom submodes and menus [nvimtools/hydra.nvim]";
|
|
};
|
|
}
|