Reputation: 115
Since Version 1.26.1 (1.26.1), The File Explorer is highlighting the open files and the directories with a green color. I find this really distracting since it's overwriting the colors from git lense (yellow for changes/new files) and eslint (red for errors).
Is there a way to disable that?
Upvotes: 9
Views: 5554
Reputation: 648
In Preferences:
explorer.decorations.colors
Controls whether file decorations should use colors.
"explorer.decorations.colors": true,//shows colors
"explorer.decorations.colors": false, //displays no colors
Upvotes: 13