nix-config/modules/zsh/aliases.nix
Oliver Davies 2c5f5f266f Remove build and build-adoc
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-10-27 23:03:23 +00:00

22 lines
783 B
Nix

{
flake.modules.homeManager.base =
{ config, ... }:
{
programs.zsh.shellAliases = {
"$" = "";
"-" = "cd -";
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"....." = "cd ../../../..";
build = "z build";
chmox = "chmod +x";
run = "./run";
tag = "tag-release";
todo = "z todo";
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";
};
};
}