20 lines
635 B
Bash
20 lines
635 B
Bash
if [ -z "${OMZ:-}" ]; then
|
|
export OMZ="${${(%):-%N}:A:h}"
|
|
fi
|
|
export UEBERZUGPP_PID_FILE=$OMZ/cache/ubpidfile
|
|
source $OMZ/config/omz.zsh
|
|
source $OMZ/config/init.zsh
|
|
source $OMZ/config/git.zsh
|
|
source $OMZ/config/fzf.zsh
|
|
source $OMZ/config/hook.zsh
|
|
source $OMZ/config/My.zsh
|
|
source $OMZ/config/conda.zsh
|
|
source $OMZ/themes/simple.zsh-theme
|
|
|
|
# configuration
|
|
[ "$_OMZ_APPLY_PREEXEC_HOOK" = "true" ] && _apply_preexec_hook # file: $OMZ/config/hook.zsh
|
|
[ "$_OMZ_APPLY_CHPWD_HOOK" = "true" ] && _apply_chpwd_hook # file: $OMZ/config/hook.zsh
|
|
[ "$_OMZ_APPLY_HISTORYBYFZF" = "false" ] || _apply_historybyfzf # file: $OMZ/config/fzf.zsh
|
|
|
|
|