1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-24 22:29:55 +00:00

Fix path relocation

This commit is contained in:
Thomas A. Christensen II 2021-08-24 20:20:03 -05:00
parent e81ad22fee
commit 07b403882c
2 changed files with 1 additions and 11 deletions

View file

@ -1,7 +1,7 @@
# User specific environment # User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]] if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then then
PATH="$HOME/.local/bin:$HOME/bin:$PATH" export PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi fi
# Linuxbrew setup # Linuxbrew setup

View file

@ -8,16 +8,6 @@ fi
# Hook virtual environment modifers # Hook virtual environment modifers
source $HOME/.hooks source $HOME/.hooks
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions # User specific aliases and functions
source $HOME/.aliases source $HOME/.aliases