diff --git a/default/.config/zsh/.zlogin b/default/.config/zsh/.zlogin index fc917d8..bea8846 100644 --- a/default/.config/zsh/.zlogin +++ b/default/.config/zsh/.zlogin @@ -7,4 +7,4 @@ source $HOME/.zshrc.local if [[ $FFENABLED != "false" ]] && command -v fastfetch >/dev/null; then fastfetch --config examples/13 -fi \ No newline at end of file +fi diff --git a/default/.config/zsh/.zprofile b/default/.config/zsh/.zprofile index 1a9a3c4..e7bee3d 100644 --- a/default/.config/zsh/.zprofile +++ b/default/.config/zsh/.zprofile @@ -1,4 +1,3 @@ # ~/.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. - diff --git a/default/.config/zsh/.zshenv b/default/.config/zsh/.zshenv index e69de29..5fe16a1 100644 --- a/default/.config/zsh/.zshenv +++ b/default/.config/zsh/.zshenv @@ -0,0 +1,3 @@ +# .zshenv: Executed for EVERY zsh invocation (interactive, non-interactive, +# login, scripts). Use only for environment variables and PATH that ALL shells +# need. Avoid aliases, functions, prompt config, or anything interactive-only.