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

@@ -38,7 +38,7 @@ export NOMAD_ADDR=http://pandora.cortex.io:4646
export PATH="/opt/homebrew/opt/libpq/bin:$PATH"
# ---- Oh-My-Posh ----
if [ "$TERM_PROGRAM" != "Apple_Terminal" ] && [ "$TERM_PROGRAM" != "zed" ];
if [ "$TERM_PROGRAM" != "Apple_Terminal" ] && [ "$TERM_PROGRAM" != "zed" ];
then
eval "$(oh-my-posh init zsh --config ~/.config/oh-my-posh/theme.toml)"
fi
@@ -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"