mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-10 10:39:22 +01:00
16 lines
471 B
Bash
16 lines
471 B
Bash
# https://github.com/Homebrew/brew
|
|
if [ -d /home/linuxbrew/.linuxbrew/bin ]; then
|
|
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
|
|
fi
|
|
|
|
# https://github.com/nvm-sh/nvm
|
|
if [ -d ~/.nvm ]; then
|
|
. ~/.nvm/nvm.sh
|
|
. ~/.nvm/bash_completion
|
|
elif [ -d /home/linuxbrew/.linuxbrew/opt/nvm ]; then
|
|
mkdir -p /home/linuxbrew/.nvm
|
|
export NVM_DIR=/home/linuxbrew/.nvm
|
|
. /home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh
|
|
. /home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm
|
|
fi
|