Closed fievelk closed 1 year ago
On macOS with M1 chip, Homebrew is now installed by default in /opt/homebrew/ (see https://github.com/Homebrew/install/pull/373).
/opt/homebrew/
The current installation process determines whether fzf was installed via Homebrew, but only checks under /usr/local/: https://github.com/thoughtbot/dotfiles/blob/2a59c1890f81bffc1db79cae4482ce2b706b0f79/vimrc.bundles#L20-L26
/usr/local/
I think adding a new check for /opt/homebrew/ might help for machines with M1 chips.
You can solve it by adding export FZF_BASE="/opt/homebrew/opt/fzf" to your bash file.
export FZF_BASE="/opt/homebrew/opt/fzf"
On macOS with M1 chip, Homebrew is now installed by default in
/opt/homebrew/
(see https://github.com/Homebrew/install/pull/373).The current installation process determines whether fzf was installed via Homebrew, but only checks under
/usr/local/
: https://github.com/thoughtbot/dotfiles/blob/2a59c1890f81bffc1db79cae4482ce2b706b0f79/vimrc.bundles#L20-L26I think adding a new check for
/opt/homebrew/
might help for machines with M1 chips.