From 1145ef23e1076ddd8270f637c15e9b1139103daf Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Mon, 30 Sep 2024 10:27:39 -0700 Subject: [PATCH] [zsh] Move ~df to init-env-tilde-paths --- zsh/func/init-env-darwin | 2 -- zsh/func/init-env-tilde-paths | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/func/init-env-darwin b/zsh/func/init-env-darwin index 9d9ac43..166edfe 100644 --- a/zsh/func/init-env-darwin +++ b/zsh/func/init-env-darwin @@ -10,8 +10,6 @@ function init-env-darwin export XCODE_INSTALLS="$XCODE_LIBRARY/Installs" export dd="$XCODE_DERIVED_DATA" fi - - export df=~/.dotfiles } init-env-darwin "$@" diff --git a/zsh/func/init-env-tilde-paths b/zsh/func/init-env-tilde-paths index 9e3f8ef..d6af187 100644 --- a/zsh/func/init-env-tilde-paths +++ b/zsh/func/init-env-tilde-paths @@ -15,6 +15,8 @@ function init-env-tilde-paths c="$candidate_code_path" break done + + export df=~/.dotfiles } init-env-tilde-paths "$@"