From 630baed5a1ce7370e6588eb40955b211c9eee223 Mon Sep 17 00:00:00 2001 From: TymanWasTaken Date: Mon, 13 Dec 2021 17:47:32 -0700 Subject: [PATCH] fix pyenv errors --- dotfiles/.zshrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dotfiles/.zshrc b/dotfiles/.zshrc index 0fbc9cd..853f392 100644 --- a/dotfiles/.zshrc +++ b/dotfiles/.zshrc @@ -7,6 +7,11 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]] source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" fi #---------------------------------------------------------------------------------# +### Add things to PATH +path+=("$HOME/.pyenv/bin") +path+=("$HOME/.local/bin") +export PATH +#--------------------------------------------------------------------------------# ### Zsh config # Configure command history saving HISTFILE=~/.zsh_history # Sets history file @@ -67,8 +72,3 @@ fi ### Fixes export GPG_TTY=$(tty) # Fix gpg signing #---------------------------------------------------------------------------------# -### Add things to PATH -path+=("$HOME/.pyenv/bin") -path+=("$HOME/.local/bin") -export PATH -