Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable blue notification badges on VS Code?

I can't stand these things, any way to turn them off?

enter image description here

like image 441
Mirror318 Avatar asked Feb 04 '17 15:02

Mirror318


2 Answers

To disable the Git badge, you can add this to your settings.json:

"git.countBadge": "off"

I could not find an equivalent setting for the unsaved file counter. However, as a workaround, enabling auto-save with a short delay also disables that badge:

"files.autoSave": "afterDelay"
like image 70
Gama11 Avatar answered Oct 01 '22 05:10

Gama11


If you never actually use the Source Control tab, you can right-click and hide it entirely.

That should at least get rid of the distracting flicker that happens a few seconds after every save.

like image 31
Stuart Cook Avatar answered Sep 30 '22 05:09

Stuart Cook