dotfiles/lib/shared/modules/zsh/aliases.nix

15 lines
394 B
Nix

{
"-" = "cd -";
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
"....." = "cd ../../../..";
cat = "bat";
run = "./run";
s = "secrets";
secrets = ''doppler --project "$(whoami)" run'';
tag = "tag-release";
wt = "git worktree";
vss = "LC_ALL=C sort --unique ~/Code/opdavies.nvim/spell/en.utf-8.add --output ~/Code/personal/opdavies.nvim/spell/en.utf-8.add";
}