summaryrefslogtreecommitdiff
path: root/src/plugins/terminal/shellintegrations/shellintegration-env.zsh
blob: 3c890539aebb5f985b92b731f34a8dcb6a5bc6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright (c) Microsoft Corporation. All rights reserved.
# SPDX-License-Identifier: MIT

if [[ -f $USER_ZDOTDIR/.zshenv ]]; then
	VSCODE_ZDOTDIR=$ZDOTDIR
	ZDOTDIR=$USER_ZDOTDIR

	# prevent recursion
	if [[ $USER_ZDOTDIR != $VSCODE_ZDOTDIR ]]; then
		. $USER_ZDOTDIR/.zshenv
	fi

	USER_ZDOTDIR=$ZDOTDIR
	ZDOTDIR=$VSCODE_ZDOTDIR
fi