15 lines
403 B
Nix
15 lines
403 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/personal/opdavies.nvim/spell/en.utf-8.add --output ~/Code/personal/opdavies.nvim/spell/en.utf-8.add";
|
||
|
}
|