From 885dade6ba0ae9708ff91bf66421eb8c45ec834e Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Wed, 14 May 2025 23:54:36 +0200 Subject: [PATCH] Add: zprofile config & PyEnv init --- Configs/ZSHShell/.zprofile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Configs/ZSHShell/.zprofile diff --git a/Configs/ZSHShell/.zprofile b/Configs/ZSHShell/.zprofile new file mode 100644 index 0000000..8fa4eb8 --- /dev/null +++ b/Configs/ZSHShell/.zprofile @@ -0,0 +1,9 @@ +################################ +#------------ PyEnv -----------# +export PYENV_ROOT="$HOME/.pyenv" +command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" +eval "$(pyenv init -)" +#----------- Plugins ----------# +eval "$(pyenv virtualenv-init -)" +################################ +