1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2024-12-28 11:59:47 +01:00
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";
};
}