1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2025-01-05 05:22:09 -05:00
dotfiles/dot_profile

17 lines
404 B
Text
Raw Normal View History

# shellcheck shell=sh
2021-08-24 21:18:31 -04:00
# User specific environment
export PATH="$HOME/.local/bin:$HOME/bin:$PATH"
2021-08-24 21:18:31 -04:00
2021-08-24 21:16:48 -04:00
# Linuxbrew setup
if [ -d $HOME/../linuxbrew/.linuxbrew ]; then
BREWPATH=$HOME/../linuxbrew/.linuxbrew
elif [ -d $HOME/.linuxbrew ]; then
BREWPATH=$HOME/.linuxbrew
fi
if [ -n "$BREWPATH" ]; then
eval "$($BREWPATH/bin/brew shellenv)"
2021-10-12 17:30:54 -04:00
export HOMEBREW_MAKE_JOBS=1
export HOMEBREW_NO_ANALYTICS=1
2021-08-24 21:16:48 -04:00
fi