diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2011-03-07 14:48:14 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2011-03-07 14:48:14 +0100 |
commit | d0374e97b116d842321b044a8c3444432b462beb (patch) | |
tree | d25a326df15910e88b1759f9a0d4d4f9c89fb57e | |
parent | 077d713020498aed20bca5855d9044f0256c6eaf (diff) |
.zshenv and .zshrc
-rw-r--r-- | .zshenv | 7 | ||||
-rw-r--r-- | .zshrc | 13 |
2 files changed, 19 insertions, 1 deletions
@@ -1,8 +1,13 @@ # .zshenv # -# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch> +# Base zshenv file which simply delegates to files in $ZDOTDIR +# +# Copyright © 2010–2011 Tobias Klauser <tklauser@distanz.ch> # # Source repository: git://git.distanz.ch/dotfiles/zsh.git # # Based on the zsh setup by martin f. krafft which can be found at: # git://git.madduck.net/etc/zsh.git + +ZDOTDIR=$HOME/.zsh +[ -f $ZDOTDIR/.zshenv ] && . $ZDOTDIR/.zshenv @@ -0,0 +1,13 @@ +# .zshrc +# +# Base zshrc file which simply delegates to files in $ZDOTDIR +# +# Copyright © 2010–2011 Tobias Klauser <tklauser@distanz.ch> +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git +# +# Based on the zsh setup by martin f. krafft which can be found at: +# git://git.madduck.net/etc/zsh.git + +ZDOTDIR=$HOME/.zsh +[ -f $ZDOTDIR/.zshrc ] && . $ZDOTDIR/.zshrc |