mirror of
https://github.com/Matir/skel.git
synced 2026-05-25 13:19:07 -07:00
17 lines
437 B
Bash
Executable File
17 lines
437 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 || ! -t 0 ]]; then
|
|
if [[ "$PWD" != /google* ]] && command -v mise >/dev/null 2>&1 ; then
|
|
eval "$(mise activate zsh --shims)"
|
|
fi
|
|
fi
|