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

35 lines
771 B
Text
Raw Normal View History

# shellcheck shell=sh
2021-08-25 01:18:31 +00:00
# User specific environment
export PATH="$HOME/.local/bin:$HOME/bin:$PATH"
2021-08-25 01:18:31 +00:00
2022-07-21 16:17:09 +00:00
# juliaup setup
if [ -d $HOME/.julia/juliaup/bin ]; then
export PATH="$HOME/.julia/juliaup/bin:$PATH"
fi
2023-03-02 19:33:57 +00:00
# >>> juliaup initialize >>>
# !! Contents within this block are managed by juliaup !!
case ":$PATH:" in
*:/home/millironx/.juliaup/bin:*)
;;
*)
export PATH=/home/millironx/.juliaup/bin${PATH:+:${PATH}}
;;
esac
# <<< juliaup initialize <<<
2021-08-25 01:16:48 +00: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 21:30:54 +00:00
export HOMEBREW_MAKE_JOBS=1
export HOMEBREW_NO_ANALYTICS=1
2021-08-25 01:16:48 +00:00
fi