mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 15:49:40 +01:00
12 lines
337 B
Plaintext
12 lines
337 B
Plaintext
|
#
|
||
|
# Defines environment variables.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
# Şahin Akkaya <sahin@sahinakkaya.dev>
|
||
|
|
||
|
# 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
|