For example, I really like to use Powershell in the full size window instead of just in the terminal at the bottom of the screen. Instead of having to click on the Powershell thing and drag it up into the window every time to get the full size, is there a way to configure VSCode via a settings.json or Preferences or something to start with this Powershell (or, similarly, Bash) window no matter what?
Asked
Active
Viewed 67 times
1 Answers
0
If you want to open the window maximized you can add:
"workbench.panel.opensMaximized": "always"
To your settings.json file.
For auto-launching a terminal you will likely need an extension:
Is it possible to have the Integrated Terminal open automatically on start of Visual Studio Code?

Terrell Plotzki
- 2,014
- 17
- 17