1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-15 03:13:10 +00:00

Move local path to profile

This commit is contained in:
Thomas A. Christensen II 2021-08-24 20:18:31 -05:00
parent fa30464c6f
commit e81ad22fee
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,9 @@
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
# Linuxbrew setup
if [ -d $HOME/../linuxbrew/.linuxbrew ]; then
BREWPATH=$HOME/../linuxbrew/.linuxbrew

View file

@ -89,8 +89,6 @@ antigen apply
autoload -U bashcompinit
bashcompinit
# Add pipx packages to PATH
export PATH="$PATH:$HOME/.local/bin"
# Enable pipx completions
if [[ $(command -v pipx) ]]; then
eval "$(register-python-argcomplete pipx)"