mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
zsh: add default keymap configuration
This commit is contained in:
parent
20a60be550
commit
a4383075af
1 changed files with 16 additions and 0 deletions
|
@ -19,6 +19,12 @@ let
|
|||
|
||||
zdotdir = "$HOME/" + cfg.dotDir;
|
||||
|
||||
bindkeyCommands = {
|
||||
emacs = "bindkey -e";
|
||||
viins = "bindkey -v";
|
||||
vicmd = "bindkey -a";
|
||||
};
|
||||
|
||||
historyModule = types.submodule ({ config, ... }: {
|
||||
options = {
|
||||
size = mkOption {
|
||||
|
@ -186,6 +192,13 @@ in
|
|||
description = "Options related to commands history configuration.";
|
||||
};
|
||||
|
||||
defaultKeymap = mkOption {
|
||||
type = types.nullOr (types.enum [ "emacs" "viins" "vicmd" ]);
|
||||
default = null;
|
||||
example = "emacs";
|
||||
description = "The default base keymap to use";
|
||||
};
|
||||
|
||||
sessionVariables = mkOption {
|
||||
default = {};
|
||||
type = types.attrs;
|
||||
|
@ -303,6 +316,9 @@ in
|
|||
|
||||
HELPDIR="${pkgs.zsh}/share/zsh/$ZSH_VERSION/help"
|
||||
|
||||
${if cfg.defaultKeymap != null && hasAttr cfg.defaultKeymap bindkeyCommands
|
||||
then getAttr cfg.defaultKeymap bindkeyCommands else ""}
|
||||
|
||||
${concatStrings (map (plugin: ''
|
||||
path+="$HOME/${pluginsDir}/${plugin.name}"
|
||||
fpath+="$HOME/${pluginsDir}/${plugin.name}"
|
||||
|
|
Loading…
Reference in a new issue