diff --git a/default/.config/zsh/.zprofile b/default/.config/zsh/.zprofile index d006b70..1a9a3c4 100644 --- a/default/.config/zsh/.zprofile +++ b/default/.config/zsh/.zprofile @@ -2,7 +2,3 @@ # Use for one-time setup: PATH modifications, starting agents, or environment exports. # Runs BEFORE .zshrc. Ideal for variables that shouldn't be re-evaluated in every sub-shell. -[[ -d "$HOME/Scripts" ]] && path+=("$HOME/Scripts") -[[ -d "$HOME/.local/bin" ]] && path+=("$HOME/.local/bin") -[[ -d "$HOME/AppImages" ]] && path+=("$HOME/AppImages") -[[ -d "$HOME/.opencode/bin" ]] && path+=("$HOME/.opencode/bin") diff --git a/default/.config/zsh/.zshrc b/default/.config/zsh/.zshrc index 407ee13..4eef0d5 100644 --- a/default/.config/zsh/.zshrc +++ b/default/.config/zsh/.zshrc @@ -2,6 +2,12 @@ # Use for aliases, functions, prompt themes, key bindings, and shell options (setopt). # This is where 90% of your customization belongs. +[[ -d "$HOME/Scripts" ]] && path+=("$HOME/Scripts") +[[ -d "$HOME/.local/bin" ]] && path+=("$HOME/.local/bin") +[[ -d "$HOME/AppImages" ]] && path+=("$HOME/AppImages") +[[ -d "$HOME/.opencode/bin" ]] && path+=("$HOME/.opencode/bin") + + source ${ZDOTDIR}/init.zsh source ${ZDOTDIR}/aliases.zsh source ${ZDOTDIR}/functions.zsh