Add ZSH/Bash Completions; Add LMStudio to Path

This commit is contained in:
2026-05-02 13:47:45 -07:00
parent 4b6abebf41
commit f938609a0f

View File

@@ -56,9 +56,16 @@ source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zs
# opencode
export PATH=/Users/caleb/.opencode/bin:$PATH
# The following lines have been added by Docker Desktop to enable Docker CLI completions.
fpath=(/Users/caleb/.docker/completions $fpath)
# ZSH/Bash Completions
fpath=(/Users/caleb/.docker/completions $fpath) #Docker
autoload -Uz compinit
compinit
# End of Docker CLI completions
eval "$(op completion zsh)"; compdef _op op #1Password
autoload -U +X bashcompinit && bashcompinit
complete -o nospace -C /opt/homebrew/bin/consul consul
complete -o nospace -C /opt/homebrew/bin/nomad nomad
complete -o nospace -C /opt/homebrew/bin/nomad vault
export PATH="$HOME/.local/bin:$PATH"
export PATH="$PATH:/Users/caleb/.lmstudio/bin"