zshlibs/zbootstrap.zsh
2022-12-09 18:32:09 +03:00

18 lines
417 B
Bash

function zlibs_install()
{
git clone --branch master https://git.brass.host/tea/zshlibs.git
}
if [[ -z ${zshlibs_install} ]]
then
typeset -g zshlibs_install="${HOME}/.local/zshlibs"
fi
if ! [[ -d ${zshlibs_install} ]]
then
zlibs_install
fi
source ${zshlibs_install}/tools.funcs.zsh
source ${zshlibs_install}/zconfig.funcs.zsh
source ${zshlibs_install}/global.funcs.zsh
source ${zshlibs_install}/zssh.funcs.zsh