]> git.donarmstrong.com Git - zsh.git/blob - .zsh/rcsstub
add ~/.local/bin to PATH
[zsh.git] / .zsh / rcsstub
1 # -*- mode: sh -*-
2 # rcsstub
3 #
4 # Stub for all .z* files; actual content comes from a directory
5 #
6 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
7 # Released under the terms of the Artistic Licence 2.0
8 #
9 # Source repository: git://git.madduck.net/etc/zsh.git
10 #
11
12 if [[ -o rcs ]]; then
13   source $ZDOTDIR/logging
14   source $ZDOTDIR/util
15   source $ZDOTDIR/sourcedir
16
17 #  __do_debug && set -x || :
18
19   _DIR=$ZDOTDIR/${${(%):-%1N}#.}
20   sourcedir $_DIR
21
22   if [[ -d $_DIR/parts.d ]]; then
23     sourcedir $_DIR/parts.d
24   fi
25
26   unset _DIR
27
28 #  __do_debug && set +x || :
29 fi
30
31 # vim:ft=zsh