all repos — nixfiles @ d572253f235621e4575d9328232d76eefce20a0f

System and user configuration, managed by nix and home-manager

tag-zsh/config/zsh/zshenv (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
if [[ $SHLVL = 1 ]]
then
	if [[ -f $ZDOTDIR/zshenv.local ]]
	then
		. $ZDOTDIR/zshenv.local
	fi

	ZPLUG_HOME=${ZPLUG_HOME:-~/projects/zplug}

	if [[ -z $SSH_AUTH_SOCK ]]
	then
		export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent.socket
	fi
fi