I am currently building a lab environment for colleagues. I'm using code-server
for that purpose. However, they don't need to use the code editor area, only the Terminal window is enough for learning. How do I configure the settings.json
workspace or any configuration anywhere to not show the editor area of files and only show the plane Terminal only. On startup, I just need the Terminal and nothing else. This is important to avoid distractions or any unneeded use of file creation or editing
I tried the below configuration not working:
{
"editor.wordWrap": "off",
"editor.minimap.enabled": false,
"workbench.startupEditor": "none",
"workbench.colorTheme": "Default Dark+",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": false,
"workbench.sideBar.location": "left",
"terminal.integrated.defaultLocation": "view",
"terminal.integrated.defaultProfile.linux": "bash",
}