mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 18:31:35 +00:00
10 lines
281 B
Nix
10 lines
281 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.binds.hardtime-nvim = {
|
|
enable = mkEnableOption "hardtime helper for no repeat keybinds";
|
|
|
|
setupOpts = mkPluginSetupOption "hardtime-nvim" {};
|
|
};
|
|
}
|