`~/.zshenv' is executed for _every_ instance of `zsh', so we should limit the work done there to the absolute minimum. For me, that currently means only making sure `$ZDOTDIR' is set so that login (via `.zprofile') and interactive (via `.zshrc') shells can be configured appropriately.
9 lines
285 B
Bash
9 lines
285 B
Bash
export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
|
|
export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
|
|
export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
|
|
|
|
export LANG="en_US.UTF-8"
|
|
export LANGUAGE="en_US"
|
|
export LC_ALL="en_US.UTF-8"
|
|
export LC_CTYPE="en_US.UTF-8"
|
|
|