Update 2 files: .zprofile, .zshrc

This commit is contained in:
2026-08-01 09:08:11 -04:00
parent c825045fc6
commit e997ead0a6
2 changed files with 6 additions and 4 deletions
-4
View File
@@ -2,7 +2,3 @@
# Use for one-time setup: PATH modifications, starting agents, or environment exports. # 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. # 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")
+6
View File
@@ -2,6 +2,12 @@
# Use for aliases, functions, prompt themes, key bindings, and shell options (setopt). # Use for aliases, functions, prompt themes, key bindings, and shell options (setopt).
# This is where 90% of your customization belongs. # 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}/init.zsh
source ${ZDOTDIR}/aliases.zsh source ${ZDOTDIR}/aliases.zsh
source ${ZDOTDIR}/functions.zsh source ${ZDOTDIR}/functions.zsh