Skip to content

Instantly share code, notes, and snippets.

@alexy4744
Last active June 24, 2019 02:08
Show Gist options
  • Save alexy4744/3b4ed4eac74e7f84b718a68b1699e8ec to your computer and use it in GitHub Desktop.
Save alexy4744/3b4ed4eac74e7f84b718a68b1699e8ec to your computer and use it in GitHub Desktop.
VSCode operator mono ligatures + eslint settings
{
/* EDITOR SETTINGS */
"editor.detectIndentation": true,
"editor.fontSize": 18,
"editor.fontFamily": "Operator Mono Lig",
"editor.fontLigatures": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
// following will be in italic (=FlottFlott)
"comment",
"constant", // String, Number, Boolean…, this, super
"entity.name.type.class", // class names
"entity.name.function", // class names
"keyword.control", // import, export, return…
"storage.modifier", // static keyword
"storage.type.class", // class keyword
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
// following will be excluded from italics (VSCode has some defaults for italics)
"constant.numeric.css",
"constant.numeric.decimal.js",
"constant.numeric.json",
"invalid",
"keyword.operator",
"keyword.other.unit.px.css"
],
"settings": {
"fontStyle": ""
}
}
]
},
"files.autoSave": "onFocusChange",
"files.eol": "\n",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"workbench.colorTheme": "Moonlight II",
"workbench.iconTheme": "file-icons",
/* ESLINT */
"eslint.packageManager": "yarn",
"eslint.validate": [
"javascript",
"typescript"
],
"editor.minimap.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment