From f2bed6d6c118229a30c7a4cb3830afabd0f160c2 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 7 Aug 2022 15:30:30 +0200 Subject: .zprofile: add zprofile Following the same approach as .zshenv and .zshrc. $ZDOTDIR/.zprofile already exists but was never enabled so far. --- .zprofile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .zprofile 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 +# +# 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 -- cgit v1.2.3-54-g00ecf