diff --git a/modules/core/mappings/default.nix b/modules/core/mappings/default.nix index f9b3f823..dfc0ddac 100644 --- a/modules/core/mappings/default.nix +++ b/modules/core/mappings/default.nix @@ -1,32 +1,32 @@ {lib, ...}: let inherit (lib) mkOption types; inherit (lib) nvim; - inherit (nvim.bool) mkBool; + inherit (nvim.modules) mkBoolOption; # Most of the keybindings code is highly inspired by pta2002/nixvim. Thank you! mapConfigOptions = { silent = - mkBool false + mkBoolOption false "Whether this mapping should be silent. Equivalent to adding to a map."; nowait = - mkBool false + mkBoolOption false "Whether to wait for extra input on ambiguous mappings. Equivalent to adding to a map."; script = - mkBool false + mkBoolOption false "Equivalent to adding