fix pyenv errors
This commit is contained in:
parent
88d410b69f
commit
630baed5a1
1 changed files with 5 additions and 5 deletions
|
@ -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"
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||||
fi
|
fi
|
||||||
#---------------------------------------------------------------------------------#
|
#---------------------------------------------------------------------------------#
|
||||||
|
### Add things to PATH
|
||||||
|
path+=("$HOME/.pyenv/bin")
|
||||||
|
path+=("$HOME/.local/bin")
|
||||||
|
export PATH
|
||||||
|
#--------------------------------------------------------------------------------#
|
||||||
### Zsh config
|
### Zsh config
|
||||||
# Configure command history saving
|
# Configure command history saving
|
||||||
HISTFILE=~/.zsh_history # Sets history file
|
HISTFILE=~/.zsh_history # Sets history file
|
||||||
|
@ -67,8 +72,3 @@ fi
|
||||||
### Fixes
|
### Fixes
|
||||||
export GPG_TTY=$(tty) # Fix gpg signing
|
export GPG_TTY=$(tty) # Fix gpg signing
|
||||||
#---------------------------------------------------------------------------------#
|
#---------------------------------------------------------------------------------#
|
||||||
### Add things to PATH
|
|
||||||
path+=("$HOME/.pyenv/bin")
|
|
||||||
path+=("$HOME/.local/bin")
|
|
||||||
export PATH
|
|
||||||
|
|
||||||
|
|
Reference in a new issue