enyancc / vscode-ext-color-highlight

Extension adds colored border around css/web colors in the editor
GNU General Public License v3.0
263 stars 84 forks source link

How to disable extension for specific file types #179

Closed chrisheuberger closed 1 year ago

chrisheuberger commented 1 year ago

I don't want colors highlighted in Plain Text documents. Is it possible to exclude them entirely?

chrisheuberger commented 1 year ago

Nevermind, I found it.

In settings.json:

"color-highlight.languages": [
  "!javascript",
  "!plaintext"
]