mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-18 11:50:07 +00:00
feat(fzf): support getting fzf from nix-darwin (#10355)
This commit is contained in:
parent
1dba112041
commit
2e46b2a2dc
1 changed files with 3 additions and 1 deletions
|
@ -20,7 +20,9 @@ function setup_using_base_dir() {
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ -z "${fzf_base}" ]]; then
|
if [[ -z "${fzf_base}" ]]; then
|
||||||
if (( ${+commands[brew]} )) && dir="$(brew --prefix fzf 2>/dev/null)"; then
|
if (( ${+commands[fzf-share]} )) && dir="$(fzf-share)" && [[ -d "${dir}" ]]; then
|
||||||
|
fzf_base="${dir}"
|
||||||
|
elif (( ${+commands[brew]} )) && dir="$(brew --prefix fzf 2>/dev/null)"; then
|
||||||
if [[ -d "${dir}" ]]; then
|
if [[ -d "${dir}" ]]; then
|
||||||
fzf_base="${dir}"
|
fzf_base="${dir}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue