docs: add post install instructions for zoxide
[webi-installers/.git] / zoxide / install.sh
index 33127b3f25f4381c2bf3f8c780ef56f3a125807b..0c0c3cded34a4d219aeca6432cc1b58ec8b1504b 100644 (file)
@@ -36,6 +36,21 @@ function __init_zoxide() {
         zoxide --version 2>/dev/null | head -n 1 | cut -d '-' -f 1 | cut -b '9-'
     }
 
+    # shellcheck disable=SC2016
+    pkg_done_message() {
+        echo 'zoxide was installed successfully. Next, you'\''ll need to set it up on your shell:'
+        echo ''
+        echo '- For bash, add this line to ~/.bashrc:'
+        echo '    eval "$(zoxide init bash)"'
+        echo ''
+        echo '- For fish, add this line to ~/.config/fish/config.fish:'
+        echo '    zoxide init fish | source'
+        echo ''
+        echo '- For zsh, add this line to ~/.zshrc:'
+        echo '    eval "$(zoxide init zsh)"'
+        echo ''
+        echo '- For any other shell, see the instructions at https://github.com/ajeetdsouza/zoxide.'
+    }
 }
 
 __init_zoxide