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

8 lines
140 B
Nix
Raw Normal View History

{lib, ...}:
with lib;
2023-03-31 04:20:35 +02:00
with builtins; {
options.vim.binds.whichKey = {
enable = mkEnableOption "which-key keybind helper menu";
};
}