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

15 lines
394 B
Nix
Raw Normal View History

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