mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 19:45:25 +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:$PATH"
|
||||||
export PATH="$HOME/bin/scripts:$PATH"
|
export PATH="$HOME/bin/scripts:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d "$HOME/.local/bin" ] ; then
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
fi
|
||||||
# My paths:1 ends here
|
# My paths:1 ends here
|
||||||
|
|
||||||
# [[file:Console.org::*Guix settings][Guix settings:1]]
|
# [[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:$PATH"
|
||||||
export PATH="$HOME/bin/scripts:$PATH"
|
export PATH="$HOME/bin/scripts:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d "$HOME/.local/bin" ] ; then
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
fi
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Guix settings
|
** Guix settings
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue