Skip to content

Commit

Permalink
chore: 🚸 detect fzf
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaquero committed Oct 7, 2024
1 parent d50d478 commit 2e68121
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions oxidizer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,21 @@ upox() {
cd "${HOME}" || exit
}

##########################################################
# fzf
##########################################################

if test "$(command -v fzf)"; then
case ${SHELL} in
*zsh)
source <(fzf --zsh)
;;
*bash)
eval "$(fzf --bash)"
;;
esac
fi

##########################################################
# Starship
##########################################################
Expand Down

0 comments on commit 2e68121

Please sign in to comment.