diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2011-03-07 10:52:39 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2011-03-07 10:52:39 +0100 |
commit | e505f702aa9cbd10a7a52ce68a8515c5435838c5 (patch) | |
tree | c8842b358054ec0a99c3cf83a09941029aa94598 /.zsh/zstub | |
parent | 8fb2830a93db7a1638fa89d0a98fcb7deb4535fd (diff) |
Hook up zshenv
Diffstat (limited to '.zsh/zstub')
-rw-r--r-- | .zsh/zstub | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.zsh/zstub b/.zsh/zstub new file mode 100644 index 0000000..d0c994f --- /dev/null +++ b/.zsh/zstub @@ -0,0 +1,19 @@ +# zstub +# +# Stub for all .z* files; actual content comes from a directory +# +# Copyright © 2011 Tobias Klauser <tklauser@distanz.ch> +# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net> +# Released under the terms of the Artistic Licence 2.0 +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git +# + +source $ZDOTDIR/logging +source $ZDOTDIR/sourcedir + +_DIR=$ZDOTDIR/${${(%):-%1N}#.} +sourcedir $_DIR +unset _DIR + +# vim:ft=zsh |