Last active
October 15, 2019 02:15
-
-
Save lucasengel/abec08c15a5b032bc3058316566e0f0a 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
{ | |
"editor.autoIndent": false, | |
"editor.colorDecorators": false, | |
"editor.cursorBlinking": "smooth", | |
"editor.cursorWidth": 3, | |
"editor.fontFamily": "Hack", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13, | |
"editor.fontWeight": "400", | |
"editor.formatOnSave": false, | |
"editor.letterSpacing": 0.5, | |
"editor.lineHeight": 20, | |
"editor.minimap.enabled": false, | |
"editor.renderWhitespace": "boundary", | |
"editor.rulers": [ 120 ], | |
"editor.tabSize": 2, | |
"editor.wordWrap": "off", | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
//following will be in italic (=FlottFlott) | |
"comment", | |
"entity.name.type.class", //class names | |
"keyword", //import, export, return… | |
"constant", //String, Number, Boolean…, this, super | |
"storage.modifier", //static keyword | |
"storage.type.class.js", //class keyword | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
//following will be excluded from italics (VSCode has some defaults for italics) | |
"invalid", "keyword.operator", "constant.numeric.css", "keyword.other.unit.px.css", "constant.numeric.decimal.js", "constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
}, | |
{ | |
"scope": ["keyword","storage","constant.language","support.class.builtin"], | |
"settings": { | |
"fontStyle": "bold" | |
} | |
} | |
] | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.syntaxProfiles": { | |
"html": { | |
// "tag_nl": false | |
} | |
}, | |
"eslint.autoFixOnSave": true, | |
"files.defaultLanguage": "html", | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"git.path": "/usr/bin", | |
"html.format.maxPreserveNewLines": 0, | |
"html.format.unformatted": null, | |
"html.format.wrapLineLength": 0, | |
"material-icon-theme.showUpdateMessage": false, | |
"window.zoomLevel": 1, | |
"workbench.colorCustomizations": {}, | |
"workbench.colorTheme": "Material Theme Palenight", | |
"workbench.fontAliasing": "antialiased", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.sideBar.location": "right", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.statusBar.visible": true, | |
"[html]": { | |
"editor.formatOnSave": false | |
}, | |
"[vue]": { | |
"editor.formatOnSave": false | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment