- Fix CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS env var name (was missing L) - Restore model setting in claude settings - Update marketplace paths and timestamps - Remove META_CLAUDE_CODE_RELEASE from zshenv (no longer set locally)
13 lines
357 B
Text
13 lines
357 B
Text
# ~/.zshenv - Environment variables for ALL shells (including non-interactive)
|
|
# This file is sourced first, before .zshrc
|
|
# Only put truly global environment variables here
|
|
|
|
# Editor
|
|
export EDITOR='vim'
|
|
|
|
# Locale (uncomment if needed)
|
|
# export LANG=en_US.UTF-8
|
|
# export LC_ALL=en_US.UTF-8
|
|
|
|
# Cargo/Rust
|
|
[[ -f "$HOME/.cargo/env" ]] && . "$HOME/.cargo/env"
|