VS Code - Terminals Manager Extension
Jump to navigation
Jump to search
About
This page is a child of: VS Code
The Terminals Manager VS Code extension is great to setup a bunch of terminals in the configuration you want.
My "terminals.json" Config
I didn't need to do anything too fancy... they cover that in the documentation. But me being me I wanted a copy of my setup:
{
"autorun": false,
"terminals": [
{
"name": "backend",
"focus": true,
"description": "A terminal to run the dawn backend",
"icon": "database",
"color": "terminal.ansiCyan",
"command": "echo 'BACKEND'"
},
{
"name": "frontend",
"description": "A terminal to run the dawn frontend",
"split": "backend",
"icon": "screen-full",
"color": "terminal.ansiCyan",
"commands": [
"echo 'FRONTEND'",
"echo 'NOW'"
]
},
{
"name": "ml",
"description": "A terminal for ML stuff",
"icon": "robot",
"color": "terminal.ansiGreen"
},
{
"name": "git",
"description": "A terminal for git stuff",
"icon": "github",
"color": "terminal.ansiYellow"
}
]
}