aboutsummaryrefslogtreecommitdiff
path: root/runcoms/zshenv
blob: 2d972031804733390b6d782d908eda4e843df930 (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# Defines environment variables.
#
# Authors:
#   Sorin Ionescu <sorin.ionescu@gmail.com>
#

# Ensure that a non-login, non-interactive shell has a defined environment.
if [[ "$SHLVL" -eq 1 && ! -o LOGIN && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then
  source "${ZDOTDIR:-$HOME}/.zprofile"
fi