oh-my-bash/plugins/zoxide/zoxide.plugin.sh
Ajeet D'Souza 812a8d60ef Use type_exists
Co-authored-by: Koichi Murase <myoga.murase@gmail.com>
2021-12-24 21:12:50 +09:00

9 lines
222 B
Bash

#!/usr/bin/env bash
# Check if zoxide is installed
if type_exists zoxide; then
eval "$(zoxide init bash)"
else
echo '[oh-my-bash] zoxide not found, please install it from https://github.com/ajeetdsouza/zoxide'
fi