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

15 lines
406 B
Nix
Raw Normal View History

{
"$" = "";
"-" = "cd -";
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"....." = "cd ../../../..";
cat = "bat";
s = "secrets";
secrets = ''doppler --project "$(whoami)" run'';
tag = "tag-release";
2024-10-26 14:45:29 +00:00
vss = "LC_ALL=C sort --unique $REPOS/dotfiles.nix/config/neovim/spell/en.utf-8.add --output $REPOS/dotfiles.nix/config/neovim/spell/en.utf-8.add";
wt = "git worktree";
}