1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-05 19:19:47 +01:00
neovim-flake/modules/plugins/utility/binds/which-key/which-key.nix
Gerg-L 8d5f23035d
treewide: cleanup ()
* statix, deadnix, alejandra

* _file

* _module.args

* concatStringsSep "\n" -> concatLines
concatStringsSep "\n" map -> concatMapStringsSep "\n"

* mkShell nativeBuildInputs -> packages
2024-07-08 21:57:58 +00:00

14 lines
374 B
Nix

{lib, ...}: let
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.types) attrsOf nullOr str;
in {
options.vim.binds.whichKey = {
enable = mkEnableOption "which-key keybind helper menu";
register = mkOption {
description = "Register label for which-key keybind helper menu";
type = attrsOf (nullOr str);
default = {};
};
};
}