diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2022-08-07 15:30:30 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2022-08-07 15:30:30 +0200 |
commit | f2bed6d6c118229a30c7a4cb3830afabd0f160c2 (patch) | |
tree | d8afc190a6b071899352318a776ec08b8dc19f0b | |
parent | f7cbbb198d5300e47e987647a56628cfe6d7ee97 (diff) |
.zprofile: add zprofile
Following the same approach as .zshenv and .zshrc. $ZDOTDIR/.zprofile
already exists but was never enabled so far.
-rw-r--r-- | .zprofile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.zprofile b/.zprofile new file mode 100644 index 0000000..c515bf9 --- /dev/null +++ b/.zprofile @@ -0,0 +1,13 @@ +# .zprofile +# +# Base zprofile file which simply delegates to files in $ZDOTDIR +# +# Copyright © 2022 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/.zprofile ] && . $ZDOTDIR/.zprofile |