17 lines
181 B
Markdown
17 lines
181 B
Markdown
|
# zsh
|
||
|
|
||
|
## macOS
|
||
|
|
||
|
To use latest zsh, install `zsh` with Homebrew.
|
||
|
Then append to `/etc/shells`:
|
||
|
|
||
|
```txt
|
||
|
/usr/local/bin/zsh
|
||
|
```
|
||
|
|
||
|
Set default shell
|
||
|
|
||
|
```
|
||
|
chsh -s /usr/local/bin/zsh
|
||
|
```
|