GoNZooo / vscode-aurora-gonzooo

A theme for VS Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Not set up for semantic highlighting

GoNZooo opened this issue · comments

Looking at JavaScript/TypeScript files lately they look all wrong using this theme.

The solution, if this is a recent issue, is to disable semantic highlighting:

Set "editor.semanticHighlighting.enabled" to false in your config.

You can do this only for certain languages if that's needed, by adding a [language-name] section to your configuration:

  "[typescript]": {
    "editor.tabSize": 2,
    "editor.formatOnSave": true,
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.semanticHighlighting.enabled": false
  },