From 6ba4591db9868f77ae5315e794cc8d8387286747 Mon Sep 17 00:00:00 2001 From: Joe Block Date: Wed, 11 Jun 2025 03:02:20 -0600 Subject: [PATCH] feat: plugin files for zsh and fish (github #58) Signed-off-by: Joe Block Co-authored-by: iff --- init.fish | 5 +++++ pay-respects.plugin.zsh | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 init.fish create mode 100644 pay-respects.plugin.zsh diff --git a/init.fish b/init.fish new file mode 100644 index 0000000..f7b242e --- /dev/null +++ b/init.fish @@ -0,0 +1,5 @@ +if command -sq zoxide + pay-respects fish --alias | source +else + echo "pay-respects is not in $PATH" +end diff --git a/pay-respects.plugin.zsh b/pay-respects.plugin.zsh new file mode 100644 index 0000000..8e9f05c --- /dev/null +++ b/pay-respects.plugin.zsh @@ -0,0 +1,5 @@ +if (( $+commands[pay-respects] )); then + eval "$(pay-respects zsh --alias)" +else + echo "pay-respects is not in $PATH" +fi