Skip to content

Instantly share code, notes, and snippets.

@OlivierJM
Created April 28, 2020 23:44
Show Gist options
  • Save OlivierJM/c019009a960ead104532498a2d5506c3 to your computer and use it in GitHub Desktop.
Save OlivierJM/c019009a960ead104532498a2d5506c3 to your computer and use it in GitHub Desktop.
{
"cSpell.words": [
"dateutil", "refetch"
],
"editor.formatOnPaste": true,
// "editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.fontFamily": "'Fira Code iScript', 'Fira Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.tokenColorCustomizations": {
"textMateRules": [{
"name": "comment",
"scope": ["comment"],
"settings": {
"fontStyle": "italic"
}
}, {
"name": "Keyword Storage",
"scope": [
"keyword", "storage", "keyword.control"
],
"settings": {
"fontStyle": "italic"
}
}, {
"name": "Entity",
"scope": [
"entity.name.type.class", //class names
"entity.other.attribute-name",
"entity.name.method",
"entity.name.tag"
],
"settings": {
"fontStyle": "italic"
}
}, {
"name": "Variable",
"scope": [
"variable.language", "meta.paragraph.markdown", "support.type.property-name.json", "string.other.link.title.markdown"
],
"settings": {
"fontStyle": "italic"
}
}, {
"name": "Markdown",
"scope": [
"meta.paragraph.markdown", "string.other.link.title.markdown", "markup.underline.link.markdown"
],
"settings": {
"fontStyle": "italic"
}
}, {
"name": "Json",
"scope": ["support.type.property-name.json"],
"settings": {
"fontStyle": "italic"
}
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment