Update asdf and fzf to work nicer with MacOS

This commit is contained in:
Tony Blyler 2022-08-22 21:16:31 -04:00
parent 32ebf043e3
commit 56a572e55f
4 changed files with 11 additions and 2 deletions
chezmoi/dot_zshrc.d

View file

@ -1,5 +1,12 @@
if [ -r ~/.asdf/asdf.sh ]; then
. ~/.asdf/asdf.sh
fi
if command -v brew &> /dev/null && [ -r "$(brew --prefix)/opt/asdf/asdf.sh" ]; then
. "$(brew --prefix)/opt/asdf/asdf.sh"
fi
if [ -n "$ASDF_DIR" ]; then
# append completions to fpath
fpath=(${ASDF_DIR}/completions $fpath)
fi