Created
April 28, 2020 23:44
-
-
Save OlivierJM/c019009a960ead104532498a2d5506c3 to your computer and use it in GitHub Desktop.
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
{ | |
"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