Update early-init.zsh

This commit is contained in:
2026-04-08 15:06:01 -07:00
parent a8a5aefec3
commit 9142551060

View File

@@ -3,6 +3,11 @@ export PATH="${HOME}/.local/bin:${PATH}"
export LD_LIBRARY_PATH="${HOME}/.local/lib:${LD_LIBRARY_PATH}"
export PKG_CONFIG_PATH="${HOME}/.local/lib/pkgconfig:${PKG_CONFIG_PATH}"
# Make sure this is PATH
if [[ -d "${HOME}/.ghcup/bin" ]]; then
export PATH=":${HOME}/.ghcup/bin:${PATH}"
fi
# Because I use zsh to start graphical sessions
[[ -v ZSH_GRAPHICAL_LOGIN ]] || ZSH_GRAPHICAL_LOGIN=true
if [[ -o login ]] && [[ "${ZSH_GRAPHICAL_LOGIN}" = 'true' ]] ; then