diff options
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.config/zsh/.zshrc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index 66e8811..355b4f4 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -3,7 +3,8 @@ # confirmations, etc.) must go above this block; everything else may go below. [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]] && source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" # add .local/bin to PATH -export PATH="${$(find ~/.local/bin -type d -printf %p:)%%:}:$PATH" +export PATH="${XDG_BIN_HOME:-$HOME/.local/bin}:$PATH" +#export PATH="${$(find ~/.local/bin -type d -printf %p:)%%:}:$PATH" eval "$(antidot init)" eval "$(lesspipe.sh)" |