X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fskel%2F.zshrc;h=a8eb45272a487f0f9656fedc15c1c7e95ebe4624;hb=9b7b15ea36e0e6227cdec1274f836b0dcf39638e;hp=7af2f0a91311ca4200b3aaf81363442f99b48086;hpb=7a325cd3d523936085732da281fac43e55ad4e5c;p=grml-etc-core.git diff --git a/etc/skel/.zshrc b/etc/skel/.zshrc index 7af2f0a..a8eb452 100644 --- a/etc/skel/.zshrc +++ b/etc/skel/.zshrc @@ -3,14 +3,18 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Mit Aug 08 21:22:03 CEST 2007 [mika] +# Latest change: Don Dez 06 23:27:51 CET 2007 [mika] ################################################################################ # source ~/.zshrc.global {{{ # see /etc/zsh/zshrc for some general settings # If you don't have write permissions to /etc/zsh/zshrc on your own # copy the file to your $HOME as /.zshrc.global and we source it: -xsource "${HOME}/.zshrc.global" +if type xsource &>/dev/null ; then + xsource "${HOME}/.zshrc.global" +else + . "${HOME}/.zshrc.global" +fi # }}} # check whether global file has been read {{{ @@ -1246,7 +1250,7 @@ gethgsnap() { if type xsource &>/dev/null ; then xsource "${HOME}/.zshrc.local" else - xsource "${HOME}/.zshrc.local" + . "${HOME}/.zshrc.local" fi # ...and remove utility functions again.