dotfiles/nix/modules/home-manager/features/cli/zsh/aliases.nix

15 lines
380 B
Nix
Raw Normal View History

{
"$" = "";
"-" = "cd -";
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"....." = "cd ../../../..";
cat = "bat";
s = "secrets";
secrets = ''doppler --project "$(whoami)" run'';
tag = "tag-release";
2024-11-22 01:20:30 +00:00
vss = "LC_ALL=C sort --unique $REPOS/dotfiles/nvim/spell/en.utf-8.add --output $REPOS/dotfiles/nvim/spell/en.utf-8.add";
wt = "git worktree";
}