1
0
Fork 0
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:
kawarimidoll 2025-03-28 22:37:01 +09:00
parent 1efd250317
commit f8e5f87fc3
No known key found for this signature in database
GPG key ID: 9DF908CC763A2BF4

View file

@ -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";
}; };
}; };
} }