feat(console): add $HOME/.local/bin to $PATH

This commit is contained in:
Pavel Korytov 2022-03-30 14:48:38 +03:00
parent 6402061319
commit fb88d105ea
2 changed files with 8 additions and 0 deletions

View file

@ -23,6 +23,10 @@ if [ -d "$HOME/bin" ] ; then
export PATH="$HOME/bin:$PATH"
export PATH="$HOME/bin/scripts:$PATH"
fi
if [ -d "$HOME/.local/bin" ] ; then
export PATH="$HOME/.local/bin:$PATH"
fi
# My paths:1 ends here
# [[file:Console.org::*Guix settings][Guix settings:1]]

View file

@ -81,6 +81,10 @@ if [ -d "$HOME/bin" ] ; then
export PATH="$HOME/bin:$PATH"
export PATH="$HOME/bin/scripts:$PATH"
fi
if [ -d "$HOME/.local/bin" ] ; then
export PATH="$HOME/.local/bin:$PATH"
fi
#+end_src
** Guix settings