Skip to content

Instantly share code, notes, and snippets.

@ma-9
Created February 8, 2020 09:52
Show Gist options
  • Save ma-9/a5c8033cca37ebc735937014b112912c to your computer and use it in GitHub Desktop.
Save ma-9/a5c8033cca37ebc735937014b112912c to your computer and use it in GitHub Desktop.
Configure VS CODE Fonts
// 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"
}
}
]
}

Operator Mono Setup for VS CODE

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment