Marty Oehme
f08fa474d6
On startup zsh would call all zsh env scripts (situated in `zsh/env` or `zsh/env.d/*.zsh`) *and* all sh scripts (in `sh/env` or `sh/env.d/*.sh`). However, by that point, those scripts had already been sourced once - so they just double up startup time.
15 lines
374 B
Bash
15 lines
374 B
Bash
#!/usr/bin/env zsh
|
|
#
|
|
|
|
# load zsh specific env vars
|
|
if [ -d "$XDG_CONFIG_HOME/zsh/env.d" ]; then
|
|
for _env in "$XDG_CONFIG_HOME/zsh/env.d"/*.zsh; do
|
|
. "$_env"
|
|
done
|
|
unset _env
|
|
fi
|
|
|
|
# add XDG_CONFIG_HOME/zsh/completions to fpath
|
|
# zsh uses it to look for completions; throw all
|
|
# completions in these dotfiles in there
|
|
fpath=("$XDG_CONFIG_HOME/zsh/completions" $fpath)
|