nix-config/modules/zsh/aliases.nix

20 lines
708 B
Nix
Raw Permalink Normal View History

2025-07-28 02:34:00 +01:00
{
flake.modules.homeManager.base =
{ config, ... }:
{
programs.zsh.shellAliases = {
"$" = "";
"-" = "cd -";
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"....." = "cd ../../../..";
2025-09-04 12:00:00 +01:00
chmox = "chmod +x";
2025-07-28 02:34:00 +01:00
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";
};
};
}