5 # Written by Joerg Jaspert <joerg@debian.org>
9 # Base directory for all plugins, themes, functions, whatever
14 [[ "${DEBUG}" = "no" ]] && return
17 echo ${nl} "${msg}$reset_color"
20 # May want to use colors in log output...
21 [[ "${DEBUG}" = "no" ]] && autoload -U colors && colors
24 autoload -Uz zrecompile
25 zrecompile -q -p -R ${ZDOTDIR}/.zshrc -- -M ${ZDOTDIR}/var/.zcompdump
27 # Idea copied from https://github.com/hugues/zdotdir/blob/master/zshrc
28 # AUTHOR: Hugues Hiegel <hugues@hiegel.fr>
29 # Most of my config is splitted into files and directories
30 if [ -d ${ZDOTDIR} ]; then
31 for script in ${ZDOTDIR}/??_*.zsh; do
33 debug "Loading ${lscript/??_/}... " -n
34 zrecompile -q -p -U -R ${script}
36 debug "$fg_no_bold[green]done"
37 for i in "net:$DOMAIN" \
43 "net:$DOMAIN/host:$HOST" \
44 "net:$DOMAIN/sys:$OSNAME" \
45 "net:$DOMAIN/distri:$DISTRI" \
46 "net:$DOMAIN/user:$USER" \
47 "net:$DOMAIN/user:$SUDO_USER" \
48 "net:$DOMAIN/host:$HOST/sys:$OSNAME" \
49 "net:$DOMAIN/host:$HOST/distri:$DISTRI" \
50 "net:$DOMAIN/host:$HOST/user:$USER" \
51 "net:$DOMAIN/host:$HOST/user:$SUDO_USER" \
52 "net:$DOMAIN/host:$HOST/sys:$OSNAME" \
53 "net:$DOMAIN/host:$HOST/sys:$OSNAME/distri:$DISTRI" \
54 "net:$DOMAIN/host:$HOST/sys:$OSNAME/user:$USER" \
55 "net:$DOMAIN/host:$HOST/sys:$OSNAME/user:$SUDO_USER" \
56 "host:$HOST/sys:$OSNAME" \
57 "host:$HOST/distri:$DISTRI" \
58 "host:$HOST/user:$USER" \
59 "host:$HOST/user:$SUDO_USER" \
60 "host:$HOST/sys:$OSNAME/distri:$DISTRI" \
61 "host:$HOST/sys:$OSNAME/user:$USER" \
62 "host:$HOST/sys:$OSNAME/user:$SUDO_USER"
64 specific_script=${script:h}/$i/${${script:t}/??_/}
65 #debug "Checking $specific_script... "
66 if [ -r ${specific_script} ]; then
67 debug "Loading $i/${${specific_script:t:r}/??_/}... " -n
68 zrecompile -q -p -U -R ${specific_script}
69 source ${specific_script}
70 debug "$fg_no_bold[green]done"
73 if [[ -f ${ZDOTDIR}/${lscript}.zsh.local ]]; then
74 debug "Loading local ${lscript/??_/}... " -n
75 zrecompile -q -p -U -R ${lscript}.zsh.local
76 source ${script}.local
77 debug "$fg_no_bold[green]done"
83 if [ ! -z "$SUDO_USER" ]; then
85 [ "`pwd`" = ~$SUDO_USER ] && cd
88 [[ -f ${ZDOTDIR}/.zshlate ]] && source ${ZDOTDIR}/.zshlate || /bin/true