From e788dedf6987a1a642864aedd6ca5becb6563ac5 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Fri, 16 Apr 2021 20:23:48 -0700 Subject: [PATCH] Support pip path --- dotfiles/zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dotfiles/zshrc b/dotfiles/zshrc index ecc2f6a..1f5d04a 100755 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -140,6 +140,11 @@ if test -d ${HOME}/.cargo/bin ; then PATH=${PATH}:${HOME}/.cargo/bin fi +# Pip packages +if test -d ${HOME}/.local/bin ; then + PATH=${PATH}:${HOME}/.local/bin +fi + # Most is nice, if we have it if command -v most >/dev/null 2>&1; then export PAGER="most"