Marty Oehme
fbc1c44652
Added `$XDG_CONFIG_HOME/zsh/completions` to fpath for zsh to source completions from. Any stow modules creating scripts and functions which should be auto-completable can add their own completion scripts to this directory for zsh to automatically pick them up. Add zsh-users/zsh-completions plugin to provide completions for a wide array of applications (e.g. glances, nvm).
25 lines
604 B
Bash
25 lines
604 B
Bash
#!/usr/bin/env zsh
|
|
#
|
|
#
|
|
|
|
# load global sh env vars
|
|
[ -f "$XDG_CONFIG_HOME/sh/env" ] && source "$XDG_CONFIG_HOME/sh/env"
|
|
if [ -d "$XDG_CONFIG_HOME/sh/env.d" ]; then
|
|
for _env in "$XDG_CONFIG_HOME/sh/env.d"/*.sh; do
|
|
. "$_env"
|
|
done
|
|
unset _env
|
|
fi
|
|
|
|
# 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)
|