about summary refs log tree commit diff
path: root/.config/zsh/zprofile
blob: 9e6b587044aff125eae7e4cdd7f1088bba812dd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
if command -v brew &> /dev/null; then
	export HOMEBREW_PREFIX="/usr/local"
	export HOMEBREW_CELLAR="/usr/local/Cellar"
	export HOMEBREW_REPOSITORY="/usr/local/Homebrew"
	fpath[1,0]="/usr/local/share/zsh/site-functions"
	PATH="/usr/local/bin:/usr/local/sbin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:$HOME/.local/bin"
	export PATH;
	[ -z "${MANPATH-}" ] || export MANPATH=":${MANPATH#:}"
	export INFOPATH="/usr/local/share/info:${INFOPATH:-}"
fi