You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add this to your ~/.config/fish/config.fish:
if test (uname -s) = "Darwin"
set -gx PATH /usr/local/opt/coreutils/libexec/gnubin $PATH
set -gx PATH /usr/local/opt/gnu-sed/libexec/gnubin $PATH
end
[Brew installation folder...]:
/usr/local for macOS on Intel,
/opt/homebrew for macOS on Apple Silicon/ARM, and
/home/linuxbrew/.linuxbrew for Linux.
For my installation I had to change the path to ( and i added fish_add_path )
if test (uname -s) = 'Darwin'
and test (uname -p) = "arm"
fish_add_path -p /opt/homebrew/opt/coreutils/libexec/gnubin
fish_add_path -p /opt/homebrew/opt/gnu-sed/libexec/gnubin
end
I could draft a PR tackling this change. Thank you for your work on this amazing theme.
The text was updated successfully, but these errors were encountered:
peauc
changed the title
The install instructions for OSX is outdated.
The install instructions for OSX is outdated for M1 Macs.
Oct 17, 2022
The README.md states
However as per brew documentation:
For my installation I had to change the path to ( and i added fish_add_path )
I could draft a PR tackling this change. Thank you for your work on this amazing theme.
The text was updated successfully, but these errors were encountered: