Created
June 27, 2018 11:23
-
-
Save shaond/e98aaa8322119503f87e08e43165322b to your computer and use it in GitHub Desktop.
[vscode] Stop the dracula theme from italising keywords in cpp (C++) files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontFamily": "Source Code Pro", | |
"editor.fontSize": 16, | |
"editor.tabSize": 2, | |
"workbench.colorTheme": "Dracula Soft", | |
"editor.formatOnSave": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"storage.type.c", | |
"entity.name.type" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In order to determine the scope of a particular keyword, you need to bring up the command palette (Command + Shift + P) and type in "scope" - see discussion here.