mirror of
https://github.com/MillironX/dotfiles.git
synced 2024-11-15 03:13:10 +00:00
13 lines
338 B
Text
13 lines
338 B
Text
# 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
|
|
if [[ "$SHELL" =~ "zsh" ]]; then
|
|
export fpath+=($BREWPATH/share/zsh/site-functions)
|
|
fi
|
|
eval "$($BREWPATH/bin/brew shellenv)"
|
|
fi
|