neovim-flake/modules/utility/binds/which-key/which-key.nix

8 lines
154 B
Nix
Raw Normal View History

{lib, ...}: let
inherit (lib) mkEnableOption;
in {
options.vim.binds.whichKey = {
enable = mkEnableOption "which-key keybind helper menu";
};
}