nix-config/modules2/zsh/abbreviations/global-abbreviations.nix
Oliver Davies 556de5e482
All checks were successful
/ check (push) Successful in 1m38s
Move zsh configuration
2025-07-28 02:43:35 +01:00

16 lines
354 B
Nix

{
flake.modules.homeManager.base.programs.zsh.zsh-abbr.globalAbbreviations = {
A1 = "| awk '{print $1}'";
C = "| xclip -sel clip";
Fj = "| jq .";
Fy = "| yq .";
G = "| grep";
GH = "| grep HTTP";
Gi = "| grep -i";
H2 = "| head -n 20";
H = "| head";
L = "| less";
V = "| nvim -";
X = "| xargs -I1";
};
}