Created
November 18, 2020 08:29
-
-
Save hid0/2a608726ee99e3f4eed84bcec4c67a4c 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
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.colorTheme": "One Dark Pro", | |
| "editor.fontSize": 17, | |
| "editor.fontFamily": "'Dank Mono','JetBrains Mono','Operator Mono Book','IBM Plex Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
| "editor.fontLigatures": true, | |
| "editor.minimap.enabled": false, | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "material-icon-theme.folders.color": "#42a5f5", | |
| "material-icon-theme.opacity": 1, | |
| "material-icon-theme.saturation": 1, | |
| "window.zoomLevel": 0, | |
| "liveSassCompile.settings.formats": [ | |
| { | |
| "format": "compressed", | |
| "extensionName": ".min.css", | |
| "savePath": "/assets/css" | |
| } | |
| ], | |
| "liveServer.settings.donotVerifyTags": true, | |
| "tailwindCSS.emmetCompletions": true, | |
| "workbench.activityBar.visible": false, | |
| "workbench.sideBar.location": "right", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "tailwindCSS.includeLanguages": { | |
| "plaintext": "html", | |
| // "javascript": "javascript", | |
| }, | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| "vue-html": "html", | |
| "razor": "html", | |
| "plaintext": "pug" | |
| }, | |
| "emmet.triggerExpansionOnTab": true, | |
| "tailwindCSS.lint.invalidApply": "ignore", | |
| "tailwindCSS.lint.invalidScreen": "ignore", | |
| "tailwindCSS.lint.invalidTailwindDirective": "ignore", | |
| "tailwindCSS.lint.invalidVariant": "ignore", | |
| "files.autoSave": "onWindowChange", | |
| "editor.lineHeight": 31, | |
| "editor.matchBrackets": false, | |
| "git.autofetch": true, | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| //following will be in italic | |
| "comment", | |
| "emphasis", | |
| "entity.name.method.js", | |
| "entity.name.class.js", | |
| "entity.name.tag.doctype", | |
| "entity.other.attribute-name", | |
| "entity.other.attribute-name.tag.jade", | |
| "entity.other.attribute-name.tag.pug", | |
| "keyword", | |
| "keyword.control", | |
| "keyword.operator.comparison", | |
| "keyword.control.flow.js", | |
| "keyword.control.flow.ts", | |
| "keyword.control.flow.tsx", | |
| "keyword.control.ruby", | |
| "keyword.control.module.ruby", | |
| "keyword.control.class.ruby", | |
| "keyword.control.def.ruby", | |
| "keyword.control.loop.js", | |
| "keyword.control.loop.ts", | |
| "keyword.control.import.js", | |
| "keyword.control.import.ts", | |
| "keyword.control.import.tsx", | |
| "keyword.control.from.js", | |
| "keyword.control.from.ts", | |
| "keyword.control.from.tsx", | |
| "keyword.operator.expression.delete", | |
| "keyword.operator.new", | |
| "keyword.operator.expression", | |
| "keyword.operator.cast", | |
| "keyword.operator.relational", | |
| "keyword.operator.sizeof", | |
| "keyword.operator.logical.python", | |
| "italic", | |
| "markup.italic", | |
| "markup.quote", | |
| "markup.changed", | |
| "markup.italic.markdown", | |
| "markup.quote.markdown", | |
| "markup.deleted.diff", | |
| "markup.inserted.diff", | |
| "meta.delimiter.period", | |
| "meta.diff.header.git", | |
| "meta.diff.header.from-file", | |
| "meta.diff.header.to-file", | |
| "meta.tag.sgml.doctype", | |
| "meta.var.expr", | |
| "meta.class meta.method.declaration meta.var.expr storage.type.js", | |
| "meta.decorator punctuation.decorator", | |
| "meta.selector", | |
| "punctuation.accessor", | |
| "punctuation.definition.comment", | |
| "punctuation.definition.template-expression.begin", | |
| "punctuation.definition.template-expression.end", | |
| "punctuation.section.embedded", | |
| "quote", | |
| "source.js constant.other.object.key.js string.unquoted.label.js", | |
| "storage", | |
| "storage.type", | |
| "storage.modifier", | |
| "storage.type.property.js", | |
| "storage.type.property.ts", | |
| "storage.type.property.tsx", | |
| "tag.decorator.js entity.name.tag.js", | |
| "tag.decorator.js", | |
| "text.html.basic entity.other.attribute-name.html", | |
| "text.html.basic entity.other.attribute-name", | |
| "variable.language", | |
| "variable.other.object.property" | |
| ], | |
| "settings": { | |
| "fontStyle": "italic" | |
| } | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment