15 lines
385 B
Nix
15 lines
385 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 $REPOS/opdavies.nvim/spell/en.utf-8.add --output $REPOS/opdavies.nvim/spell/en.utf-8.add";
|
|
}
|