Added multiple path to the PATH env var

This commit is contained in:
Louis Lacoste 2023-02-12 16:24:15 +01:00
parent 6f6de31f18
commit 69aa46d801

View file

@ -14,3 +14,14 @@ eval "$(register-python-argcomplete conda)"
bind 'set show-all-if-ambiguous on'
#bind 'TAB:menu-complete'
bind 'set colored-completion-prefix on'
# Add paths
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi