Support pip path

This commit is contained in:
David Tomaschik
2021-04-16 20:23:48 -07:00
parent b3eb8a8e44
commit e788dedf69

View File

@@ -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"