anu
anu

Reputation: 1007

Is there a programmatic way to configure VSCode?

I m writing a brew script to set up my environment at my new workplace. I have kind of figured out how to download VSCode. I would additionally like to be able to configure VScode and install language support and set keybindings. I googled around and got documents and blogs for doing this via UI...Can I do this on CLI ?

Upvotes: 1

Views: 103

Answers (1)

Jiří Pospíšil
Jiří Pospíšil

Reputation: 14402

You can install language support / extensions with the main binary:

code --install-extension ms-python.python

More at Command line extension management.

Upvotes: 1

Related Questions