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