From 4f06d80da6637462cd2ad4c43587eb9390be1340 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 18 Jan 2026 08:08:00 -0700 Subject: [PATCH] [zsh] Use DOTFILES_HOME to find zsh functions inside the repo Zsh can find shell functions inside the repo instead using a symlink in $HOME. --- zshenv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zshenv b/zshenv index a322249..5d6c1cb 100644 --- a/zshenv +++ b/zshenv @@ -24,8 +24,8 @@ function init-env-dotfiles-path function init-env-fpath { local -r fpath_candidates=( \ - "$HOME/.zsh/${SYS}-functions" \ - "$HOME/.zsh/func" \ + "$DOTFILES_HOME/zsh/${SYS}-functions" \ + "$DOTFILES_HOME/zsh/func" \ ) # Process the array in reverse order (`Oa` means "descending index order",