Matthew Blewitt
Matthew Blewitt

Reputation: 487

How do I set ZSH to be the default shell instead of bash in the Visual Code studio integrated terminal on Mac

I've tried changing the settings to:

"terminal.integrated.shell.linux": "usr/bin/zsh"

and also

"terminal.integrated.shell.linux": "/bin/zsh",

But I can't get it to work. Cheers

Upvotes: 0

Views: 11653

Answers (2)

Turbowargen
Turbowargen

Reputation: 53

Using

"terminal.integrated.defaultProfile.osx": "zsh"

in settings.json is the currently most up-to-date syntax which works.

Upvotes: 2

Matthew Blewitt
Matthew Blewitt

Reputation: 487

I was trying to change to change the linux integrated shell! Whoops.

The user setting for Mac is:

"terminal.integrated.shell.osx": "/bin/zsh",

Upvotes: 3

Related Questions