Last active
January 20, 2023 02:26
-
-
Save AbhimanyuAryan/4bfb1c7cd4d743f370fef01a52b4b2de to your computer and use it in GitHub Desktop.
vscode julia font italics
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.tokenColorCustomizations": { | |
"[Oranji]": { | |
"textMateRules": [ | |
{ | |
"scope": "support.type.julia", | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": "keyword.other.julia", | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": "constant.language.julia", | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": "support.function.julia", | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": "support.function.macro.julia", | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": "entity.name.function.julia", | |
"settings": { | |
"fontStyle": "bold underline" | |
} | |
} | |
] | |
} // theme end | |
} // editor.tokenColorCustomizations |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"Developer: Inspect Editor Tokens and Scopes"