mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-06 09:29:22 +01:00
11 lines
561 B
Bash
11 lines
561 B
Bash
# https://github.com/Homebrew/brew
|
|
if [ -d /home/linuxbrew/.linuxbrew/bin ]; then
|
|
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
|
|
fi
|
|
|
|
if [ -d /home/linuxbrew/.linuxbrew/opt/nvm ]; then
|
|
export NVM_DIR=/home/linuxbrew/.nvm
|
|
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh" # This loads nvm
|
|
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
|
|
fi
|