8 lines
260 B
Plaintext
8 lines
260 B
Plaintext
|
function zconfig_configure()
|
||
|
{
|
||
|
typeset -a -g zconfig_loaded
|
||
|
typeset -a -g config_extra # user populatable config names in zshlibs location
|
||
|
typeset -g zconfig_shared_path="${zshlibs_install}/config"
|
||
|
typeset -g zconfig_local_path="${HOME}/.config/zsh"
|
||
|
}
|