# .zshenv — sourced for every zsh invocation (interactive, non-interactive, scripts).
# PATH lives here so cron, ssh host-command, and GUI-launched processes see it.

typeset -U path
path=(
  /projects/bin
  $HOME/.local/bin
  $HOME/.cargo/bin
  /usr/local/go/bin
  $HOME/go/bin
  /opt/homebrew/bin
  $path
)
