feat: plugin files for zsh and fish (github #58)

Signed-off-by: Joe Block <jpb@unixorn.net>
Co-authored-by: iff <iff@ik.me>
This commit is contained in:
Joe Block
2025-06-11 03:02:20 -06:00
committed by GitHub
parent 73fa43d761
commit 6ba4591db9
2 changed files with 10 additions and 0 deletions

5
init.fish Normal file
View File

@@ -0,0 +1,5 @@
if command -sq zoxide
pay-respects fish --alias | source
else
echo "pay-respects is not in $PATH"
end

5
pay-respects.plugin.zsh Normal file
View File

@@ -0,0 +1,5 @@
if (( $+commands[pay-respects] )); then
eval "$(pay-respects zsh --alias)"
else
echo "pay-respects is not in $PATH"
fi