0

VScode version 1.52.1 Linux Ubuntu 20.04 LTS

I would like to customize the output of the integrated terminal, see picture attached, virtual environment output, and other unnecessary path information in the output.

enter image description here

Thank you in advance for your help!

Hong Ooi
  • 56,353
  • 13
  • 134
  • 187
jairu
  • 1
  • these paths are added by the extension to make sure it always work no matter what your current directory is – rioV8 Jan 31 '21 at 20:08
  • So in short, it is not possible to customize that to make the output look cleaner and less distracting? – jairu Mar 04 '21 at 17:43

1 Answers1

0

In VScode, go into your settings.json file (ctrl+shift+P to search for it) and scroll down to find the Terminal section. Add the code below just to get you started...

"workbench.colorCustomizations": {
    "terminal.background": "#111111",
    "terminal.foreground": "#05ff2e",
  ...
  }
plt656
  • 11
  • 3
  • Color Customizations? I will check but just by reading the settings, I don't see how colors will help to tell the integrated terminal to stop presenting the additional path information. – jairu Mar 04 '21 at 17:43