VS Code - Terminals Manager Extension

From NoskeWiki
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.


I set it up to open/run when I hit F1 on my keyboard].


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"
    }
  ]
}


See Also

Links