Created
February 8, 2020 09:52
-
-
Save ma-9/a5c8033cca37ebc735937014b112912c to your computer and use it in GitHub Desktop.
Configure VS CODE Fonts
This file contains 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
// Theme Configuration | |
"workbench.colorTheme": "CodeSandbox Black", | |
// Font Configuration | |
"editor.wordWrap": "on", | |
"editor.fontSize": 17, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"editor.fontFamily": "Operator SSm,verdana", | |
"editor.lineHeight": 30, | |
"editor.fontLigatures": true, | |
// Terminal Font Cnfigutation | |
"terminal.integrated.fontFamily": "Segoe Print", | |
"terminal.integrated.fontSize": 12, | |
"terminal.integrated.confirmOnExit": true, | |
// Auto Format on Save Configuration | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": false | |
}, | |
"editor.formatOnSave": true, | |
"color-highlight.matchWords": true, | |
"prettier.jsxSingleQuote": true, | |
"prettier.singleQuote": true, | |
"prettier.arrowParens": "always", | |
// Bold and Italic Font Configuration | |
"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": "bold" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment