Added multiple path to the PATH env var
This commit is contained in:
parent
6f6de31f18
commit
69aa46d801
1 changed files with 11 additions and 0 deletions
|
|
@ -14,3 +14,14 @@ eval "$(register-python-argcomplete conda)"
|
||||||
bind 'set show-all-if-ambiguous on'
|
bind 'set show-all-if-ambiguous on'
|
||||||
#bind 'TAB:menu-complete'
|
#bind 'TAB:menu-complete'
|
||||||
bind 'set colored-completion-prefix on'
|
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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue