Skip to content

Instantly share code, notes, and snippets.

@kellpossible
Created May 7, 2018 02:28
Show Gist options
  • Save kellpossible/9c157ad42c227a8bca8fd27e12d9f212 to your computer and use it in GitHub Desktop.
Save kellpossible/9c157ad42c227a8bca8fd27e12d9f212 to your computer and use it in GitHub Desktop.
Visual Studio Code settings for markdown heading highlighting to match emacs org mode heading highlighting
{
// heading colours matching Emacs Org Mode
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "markup.heading.markdown punctuation.definition.heading.markdown",
"settings": {
"foreground": "#8a8888",
}
},
{
"scope": "heading.1.markdown entity.name.section",
"settings": {
"foreground": "#ff7f24",
}
},
{
"scope": "heading.2.markdown entity.name.section",
"settings": {
"foreground": "#a6e22e",
}
},
{
"scope": "heading.3.markdown entity.name.section",
"settings": {
"foreground": "#66d9ef",
}
},
{
"scope": "heading.4.markdown entity.name.section",
"settings": {
"foreground": "#e6db74",
}
},
{
"scope": "heading.5.markdown entity.name.section",
"settings": {
"foreground": "#a1efe4",
}
},
{
"scope": "heading.6.markdown entity.name.section",
"settings": {
"foreground": "#fccf3e",
}
},
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment