2026-01-18 14:23:48 +00:00
|
|
|
# ~/.zshenv - Environment variables for ALL shells (including non-interactive)
|
|
|
|
|
# This file is sourced first, before .zshrc
|
|
|
|
|
# Only put truly global environment variables here
|
2025-11-22 22:39:36 +00:00
|
|
|
|
2026-01-18 14:23:48 +00:00
|
|
|
# Editor
|
|
|
|
|
export EDITOR='vim'
|
2025-11-22 22:39:36 +00:00
|
|
|
|
2026-01-18 14:23:48 +00:00
|
|
|
# Locale (uncomment if needed)
|
|
|
|
|
# export LANG=en_US.UTF-8
|
|
|
|
|
# export LC_ALL=en_US.UTF-8
|
2025-11-22 22:39:36 +00:00
|
|
|
|
2026-01-18 14:23:48 +00:00
|
|
|
# Cargo/Rust
|
2026-01-24 00:26:54 +00:00
|
|
|
[[ -f "$HOME/.cargo/env" ]] && . "$HOME/.cargo/env"
|