VSCode: How to remove git decorator information from file tabs?

Viewed 1186

Since today, I have git information in the file tabs, probably since the last update. I want to remove that information, because I find it too heavy.

I do not find where in the settings it is. Do someone here knows ? VSCode version: 1.55.0

enter image description here

2 Answers

You can turn off the git > decorations setting. enter image description here You can also add the following line in settings.json

"git.decorations.enabled": false
Related