mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 19:23:03 +03:00
feat(console): add $HOME/.local/bin to $PATH
This commit is contained in:
parent
6402061319
commit
fb88d105ea
2 changed files with 8 additions and 0 deletions
4
.profile
4
.profile
|
|
@ -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]]
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue