From 2977a9b3ca039110b217fc4a65fa9cfa1807c393 Mon Sep 17 00:00:00 2001 From: Anthony Oteri Date: Thu, 31 Aug 2023 16:44:50 -0400 Subject: [PATCH] Add .profile and .zprofile files --- .profile | 4 ++++ .zprofile | 4 ++++ .zshrc | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .profile create mode 100644 .zprofile diff --git a/.profile b/.profile new file mode 100644 index 0000000..dd30405 --- /dev/null +++ b/.profile @@ -0,0 +1,4 @@ +export PYENV_ROOT="$HOME/.pyenv" +export PATH="$PYENV_ROOT/bin:$PATH" +eval "$(pyenv init --path)" + diff --git a/.zprofile b/.zprofile new file mode 100644 index 0000000..dd30405 --- /dev/null +++ b/.zprofile @@ -0,0 +1,4 @@ +export PYENV_ROOT="$HOME/.pyenv" +export PATH="$PYENV_ROOT/bin:$PATH" +eval "$(pyenv init --path)" + diff --git a/.zshrc b/.zshrc index 490cb41..b447171 100644 --- a/.zshrc +++ b/.zshrc @@ -84,7 +84,7 @@ zstyle ':omz:update' frequency 13 # Custom plugins may be added to $ZSH_CUSTOM/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=(git aliases archlinux branch github zsh-autosuggestions zsh-syntax-highlighting zsh-completions zsh-interactive-cd zsh-navigation-tools) +plugins=(git aliases archlinux branch github zsh-autosuggestions zsh-syntax-highlighting zsh-completions zsh-interactive-cd zsh-navigation-tools pyenv) source $ZSH/oh-my-zsh.sh