Skip to content

Instantly share code, notes, and snippets.

@AbhimanyuAryan
Last active January 20, 2023 02:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AbhimanyuAryan/4bfb1c7cd4d743f370fef01a52b4b2de to your computer and use it in GitHub Desktop.
Save AbhimanyuAryan/4bfb1c7cd4d743f370fef01a52b4b2de to your computer and use it in GitHub Desktop.
vscode julia font italics
"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
@AbhimanyuAryan
Copy link
Author

"Developer: Inspect Editor Tokens and Scopes"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment