We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d77474 commit 703ab5aCopy full SHA for 703ab5a
zsh/.zshrc.d/brew.zsh
@@ -5,3 +5,13 @@ _installhomebrew() {
5
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
6
}
7
alias install-homebrew=_installhomebrew
8
+
9
+if [ -d "/home/linuxbrew/.linuxbrew" ]; then
10
+ export HOMEBREW_PREFIX="/home/linuxbrew/.linuxbrew";
11
+ export HOMEBREW_CELLAR="/home/linuxbrew/.linuxbrew/Cellar";
12
+ export HOMEBREW_REPOSITORY="/home/linuxbrew/.linuxbrew/Homebrew";
13
+ fpath[1,0]="/home/linuxbrew/.linuxbrew/share/zsh/site-functions";
14
+ export PATH="/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin${PATH+:$PATH}";
15
+ [ -z "${MANPATH-}" ] || export MANPATH=":${MANPATH#:}";
16
+ export INFOPATH="/home/linuxbrew/.linuxbrew/share/info:${INFOPATH:-}";
17
+fi
0 commit comments