diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2024-10-18 21:52:28 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2024-10-18 21:52:28 -0500 |
commit | 2dc486fb891e65658dff83ab34ca8878756a6a90 (patch) | |
tree | 03b39eb93f38534ab0972beadb770fecbd2243b8 /zscripts/shortcuts.zsh | |
download | zsh-2dc486fb891e65658dff83ab34ca8878756a6a90.tar.xz zsh-2dc486fb891e65658dff83ab34ca8878756a6a90.zip |
initial commit
Diffstat (limited to 'zscripts/shortcuts.zsh')
-rwxr-xr-x | zscripts/shortcuts.zsh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/zscripts/shortcuts.zsh b/zscripts/shortcuts.zsh new file mode 100755 index 0000000..214b7f7 --- /dev/null +++ b/zscripts/shortcuts.zsh @@ -0,0 +1,12 @@ +#!/usr/bin/env zsh + +# TODO make this script more comprehensive to allow real aliases for directories +# Quick navigate to directories / open specific files +alias \ + cdc="cd ~/docs/src/programs" \ + cds="cd ~/docs/src/scripts" \ + cdw="cd ~/docs/src/sites" \ + vrc="vim ~/.config/nvim/init.vim" \ + xrc="cd ~/.config/x11" \ + zrc="cd ~/.config/zsh" \ + |