From e997ead0a6f2081b030637aa5c6b0d3b543aed71 Mon Sep 17 00:00:00 2001 From: Jeremy McClure Date: Sat, 1 Aug 2026 09:08:11 -0400 Subject: [PATCH] Update 2 files: .zprofile, .zshrc --- default/.config/zsh/.zprofile | 4 ---- default/.config/zsh/.zshrc | 6 ++++++ 2 files changed, 6 insertions(+), 4 deletions(-) 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