Skip to content

Instantly share code, notes, and snippets.

@ThatCoolCoder
Created October 16, 2023 00:57
Show Gist options
  • Save ThatCoolCoder/2beb90eadea78d8200a7a89e7a7a315a to your computer and use it in GitHub Desktop.
Save ThatCoolCoder/2beb90eadea78d8200a7a89e7a7a315a to your computer and use it in GitHub Desktop.
Make latex sections bold in vscode
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": ["meta.function.section.section.latex", "meta.function.section.subsection.latex"],
"settings": {
"fontStyle": "bold",
}
}
]
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment