nix-config/modules/zsh/aliases.nix
Oliver Davies a1b3975f39
All checks were successful
/ check (push) Successful in 48s
Replace zet with the z monolith
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-10-24 23:31:00 +01:00

20 lines
731 B
Nix

{
flake.modules.homeManager.base =
{ config, ... }:
{
programs.zsh.shellAliases = {
"$" = "";
"-" = "cd -";
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"....." = "cd ../../../..";
chmox = "chmod +x";
run = "./run";
tag = "tag-release";
vss = "LC_ALL=C sort --unique ${config.xdg.userDirs.extraConfig.XDG_REPOS_DIR}/nixos-config/modules/home-manager/cli/neovim/config/spell/en.utf-8.adddotfiles/nvim/spell/en.utf-8.add --output ${config.xdg.userDirs.extraConfig.XDG_REPOS_DIR}/nixos-config/modules/home-manager/cli/neovim/config/spell/en.utf-8.add";
wt = "git worktree";
zet = "z zet";
};
};
}