From 914255106033ac9788aef7bd2f73e0e50694bc32 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Wed, 8 Apr 2026 15:06:01 -0700 Subject: [PATCH] Update early-init.zsh --- early-init.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/early-init.zsh b/early-init.zsh index 2ddb573..bee772a 100644 --- a/early-init.zsh +++ b/early-init.zsh @@ -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