mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
zsh-abbr: Add global abbreviations
This commit is contained in:
parent
1efd250317
commit
f8e5f87fc3
1 changed files with 26 additions and 4 deletions
|
@ -24,9 +24,32 @@ in {
|
||||||
the longer phrase after they are entered.
|
the longer phrase after they are entered.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
globalAbbreviations = mkOption {
|
||||||
|
type = types.attrsOf types.str;
|
||||||
|
default = { };
|
||||||
|
example = {
|
||||||
|
G = "| grep";
|
||||||
|
L = "| less -R";
|
||||||
|
};
|
||||||
|
description = ''
|
||||||
|
Similar to [](#opt-programs.zsh.zsh-abbr.abbreviations),
|
||||||
|
but are expanded anywhere on a line.
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = let
|
||||||
|
abbreviations =
|
||||||
|
mapAttrsToList (k: v: "abbr ${escapeShellArg k}=${escapeShellArg v}")
|
||||||
|
cfg.abbreviations;
|
||||||
|
|
||||||
|
globalAbbreviations =
|
||||||
|
mapAttrsToList (k: v: "abbr -g ${escapeShellArg k}=${escapeShellArg v}")
|
||||||
|
cfg.globalAbbreviations;
|
||||||
|
|
||||||
|
allAbbreviations = abbreviations ++ globalAbbreviations;
|
||||||
|
in mkIf cfg.enable {
|
||||||
programs.zsh.plugins = [{
|
programs.zsh.plugins = [{
|
||||||
name = "zsh-abbr";
|
name = "zsh-abbr";
|
||||||
src = cfg.package;
|
src = cfg.package;
|
||||||
|
@ -34,9 +57,8 @@ in {
|
||||||
}];
|
}];
|
||||||
|
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
"zsh-abbr/user-abbreviations".text = concatStringsSep "\n"
|
"zsh-abbr/user-abbreviations".text =
|
||||||
(mapAttrsToList (k: v: "abbr ${escapeShellArg k}=${escapeShellArg v}")
|
concatStringsSep "\n" allAbbreviations + "\n";
|
||||||
cfg.abbreviations) + "\n";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue