mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-11 16:05:30 +00:00
8 lines
205 B
Nix
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]";
|
|
};
|
|
}
|