mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
Address review comments
This commit is contained in:
parent
a4383075af
commit
16946a6f00
1 changed files with 6 additions and 4 deletions
|
@ -193,10 +193,10 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultKeymap = mkOption {
|
defaultKeymap = mkOption {
|
||||||
type = types.nullOr (types.enum [ "emacs" "viins" "vicmd" ]);
|
type = types.nullOr (types.enum (attrNames bindkeyCommands));
|
||||||
default = null;
|
default = null;
|
||||||
example = "emacs";
|
example = "emacs";
|
||||||
description = "The default base keymap to use";
|
description = "The default base keymap to use.";
|
||||||
};
|
};
|
||||||
|
|
||||||
sessionVariables = mkOption {
|
sessionVariables = mkOption {
|
||||||
|
@ -316,8 +316,10 @@ in
|
||||||
|
|
||||||
HELPDIR="${pkgs.zsh}/share/zsh/$ZSH_VERSION/help"
|
HELPDIR="${pkgs.zsh}/share/zsh/$ZSH_VERSION/help"
|
||||||
|
|
||||||
${if cfg.defaultKeymap != null && hasAttr cfg.defaultKeymap bindkeyCommands
|
${optionalString (cfg.defaultKeymap != null) ''
|
||||||
then getAttr cfg.defaultKeymap bindkeyCommands else ""}
|
# Use ${cfg.defaultKeymap} keymap as the default.
|
||||||
|
${getAttr cfg.defaultKeymap bindkeyCommands}
|
||||||
|
''}
|
||||||
|
|
||||||
${concatStrings (map (plugin: ''
|
${concatStrings (map (plugin: ''
|
||||||
path+="$HOME/${pluginsDir}/${plugin.name}"
|
path+="$HOME/${pluginsDir}/${plugin.name}"
|
||||||
|
|
Loading…
Reference in a new issue