add asf and fix completion path

This commit is contained in:
ryan manseau 2023-12-06 16:02:27 -08:00
parent 554e0428be
commit 7234abc085

5
.zshrc
View File

@ -20,7 +20,7 @@ eval "$(/opt/homebrew/bin/brew shellenv)"
# zsh completion
if type brew &>/dev/null; then
FPATH=$(brew --prefix)/share/zsh-completions:$FPATH
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
autoload -Uz compinit
compinit
@ -29,6 +29,9 @@ fi
# direnv
eval "$(direnv hook zsh)"
# asdf
. "$(brew --prefix asdf)/libexec/asdf.sh"
# conda
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/usr/local/Caskroom/miniconda/base/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"