16 lines
415 B
Text
16 lines
415 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
|
|
|
|
# Claude Code
|
|
export CLAUDE_CODE_VERSION_OVERRIDE=latest
|
|
|
|
# Cargo/Rust
|
|
[[ -f "$HOME/.cargo/env" ]] && . "$HOME/.cargo/env"
|