- Set ZSH_THEME="" since powerlevel10k overrides it anyway - Guard powerlevel10k, brew plugins, and atuin with existence checks - Cache brew --prefix to avoid duplicate subprocess calls - Strip ~80 lines of oh-my-zsh default boilerplate comments - Replace hardcoded /Users/anton/ with $HOME in LM Studio PATH Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
autoload -Uz compinit && compinit
|
|
|
|
# Powerlevel10k instant prompt (must stay near top)
|
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
|
fi
|
|
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
ZSH_THEME=""
|
|
plugins=(git)
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
[[ -r /opt/homebrew/share/powerlevel10k/powerlevel10k.zsh-theme ]] && \
|
|
source /opt/homebrew/share/powerlevel10k/powerlevel10k.zsh-theme
|
|
|
|
if command -v brew >/dev/null 2>&1; then
|
|
HOMEBREW_PREFIX="$(brew --prefix)"
|
|
[[ -r "$HOMEBREW_PREFIX/share/zsh-autosuggestions/zsh-autosuggestions.zsh" ]] && \
|
|
source "$HOMEBREW_PREFIX/share/zsh-autosuggestions/zsh-autosuggestions.zsh"
|
|
[[ -r "$HOMEBREW_PREFIX/opt/zsh-fast-syntax-highlighting/share/zsh-fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh" ]] && \
|
|
source "$HOMEBREW_PREFIX/opt/zsh-fast-syntax-highlighting/share/zsh-fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh"
|
|
fi
|
|
|
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
command -v atuin >/dev/null 2>&1 && eval "$(atuin init zsh --disable-up-arrow)"
|
|
|
|
# Added by LM Studio CLI (lms)
|
|
export PATH="$PATH:$HOME/.cache/lm-studio/bin"
|