zsh: extract aliases and abbreviations into

...separate files
This commit is contained in:
Oliver Davies 2024-06-30 14:22:55 +01:00
parent 0ec273cbb4
commit b68d48603e
3 changed files with 93 additions and 79 deletions
lib/shared/modules/zsh

View file

@ -0,0 +1,14 @@
{
"-" = "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";
}