Reputation: 1007
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
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