2024-01-18 15:32:40 +00:00
|
|
|
function global_config_setup()
|
|
|
|
{
|
|
|
|
zshlibs_log global "expanding path with '$path_extra'"
|
2024-04-25 17:31:30 +00:00
|
|
|
if [[ -n "${extras_path}" ]]
|
|
|
|
then
|
2024-04-25 18:03:14 +00:00
|
|
|
global_path_expand $extras_path $extras_choices
|
2024-04-25 17:31:30 +00:00
|
|
|
fi
|
2024-01-18 15:32:40 +00:00
|
|
|
zshlibs_log global "expanding fpath with '$fpath_extra'"
|
|
|
|
global_fpath_expand vanilla
|
|
|
|
zshlibs_log global "done loading noninteractive config"
|
|
|
|
}
|