1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2025-12-23 18:23:49 +08:00

Differentiate default brew path for intel/arm macs (#28)

Devin Rhode 2023-03-23 12:11:30 -05:00 committed by GitHub
parent 28cf271784
commit 4a1da0a4d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -49,6 +49,14 @@ To set zsh as your default shell, execute the following assuming a default insta
- Recent macOS versions: - Recent macOS versions:
For m1 macs:
```sh
chsh -s /opt/homebrew/bin/zsh
```
For intel macs:
```sh ```sh
chsh -s /usr/local/bin/zsh chsh -s /usr/local/bin/zsh
``` ```