9 lines
484 B
Bash
9 lines
484 B
Bash
# ~/.zprofile: Executed once for LOGIN shells (initial terminal/SSH).
|
|
# 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")
|