blob: 69871e93fd85de406477fd675fd4fbe58c536329 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- mode: shell-script -*-
export GOPATH=~/Go
export XDG_CACHE_HOME=~/Library/Caches
export XDG_CONFIG_HOME=~/Library/Preferences
export XDG_DATA_HOME=~/Library
export XDG_RUNTIME_DIR=${TMPDIR%/}
# Prevent Apple Terminal from cluttering ${HOME}.
#
# This needs to be in the env file as the variable has to be set before
# the stuff in /etc/zshrc_Apple_Terminal kicks in.
if [[ ${TERM_PROGRAM} == Apple_Terminal ]]; then
SHELL_SESSIONS_DISABLE=1
fi
|