Files
skel/dotfiles/zshenv
David Tomaschik a6146c2763 Brain fart
2026-02-21 11:55:42 -08:00

17 lines
395 B
Bash
Executable File

# this is run in all zsh sessions, interactive or not, login or not
if [[ -f $HOME/.shenv ]] ; then source $HOME/.shenv ; fi
# ZSH specific environment
DEBIAN_PREVENT_KEYBOARD_CHANGES=yes
if test -d ${HOME}/.local/bin ; then
export PATH="${HOME}/.local/bin:${PATH}"
fi
if [[ ! -o interactive ]]; then
if command -v mise 2>/dev/null ; then
eval "$(mise activate zsh --shims)"
fi
fi