summaryrefslogtreecommitdiff
path: root/main/zsh/zprofile
blob: 9e3fd974917ad315875584cac2fc04e9f9f8d8f8 (plain)
1
2
3
4
5
6
7
8
9
10
# System-wide .zprofile file for zsh(1) - sourced only for login shells.
#
# Global Order: zshenv, zprofile, zshrc, zlogin

# Source /etc/profile to the current shell.
if [ -f /etc/profile ]; then
	emulate sh -c 'source /etc/profile'
fi

# vim: set ft=zsh ts=4: