12 lines
334 B
Plaintext
12 lines
334 B
Plaintext
function global_config_setup()
|
|
{
|
|
zshlibs_log global "expanding path with '$path_extra'"
|
|
if [[ -n "${extras_path}" ]]
|
|
then
|
|
global_path_expand $extras_path $extras_choices
|
|
fi
|
|
zshlibs_log global "expanding fpath with '$fpath_extra'"
|
|
global_fpath_expand vanilla
|
|
zshlibs_log global "done loading noninteractive config"
|
|
}
|