-
-
Save bran921007/13908f703abfd1e72db32f8b89973507 to your computer and use it in GitHub Desktop.
VS Code Settings
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.codeLens": false, | |
"workbench.colorTheme": "Atom One Dark", | |
"editor.quickSuggestions": { | |
"other": false, | |
"comments": false, | |
"strings": false | |
}, | |
"editor.selectionHighlight": false, | |
"editor.highlightActiveIndentGuide": false, | |
"editor.occurrencesHighlight": false, | |
"editor.fontWeight": 500, | |
"emmet.triggerExpansionOnTab": true, | |
"blade.format.enable": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 14, | |
"editor.lineHeight": 29, | |
"editor.fontLigatures": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"punctuation.section.embedded.begin.php", | |
"punctuation.section.embedded.end.php" | |
], | |
"settings": { | |
"foreground": "#c678dd", | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
"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", | |
"source.go keyword.package.go", | |
"source.go keyword.import.go", | |
"source.go keyword.function.go", | |
"source.go keyword.type.go", | |
"source.go keyword.struct.go", | |
"source.go keyword.interface.go", | |
"source.go keyword.const.go", | |
"source.go keyword.var.go", | |
"source.go keyword.map.go", | |
"source.go keyword.channel.go", | |
"source.go keyword.control.go", | |
"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" | |
} | |
} | |
] | |
}, | |
"explorer.confirmDelete": false, | |
"git.decorations.enabled": false, | |
"git.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"workbench.colorCustomizations": { | |
"editorCursor.background": "#2C323B", | |
"editorCursor.foreground": "#61AFEF" | |
}, | |
"workbench.tree.indent": 16, | |
"editor.minimap.renderCharacters": false, | |
"workbench.editor.untitled.hint": "hidden", | |
"material-icon-theme.saturation": 0.85, | |
"vsicons.presets.hideFolders": true, | |
"material-icon-theme.opacity": 0.85, | |
"material-icon-theme.folders.theme": "specific", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.scrollPredominantAxis": true, | |
"workbench.startupEditor": "none", | |
"vsicons.dontShowNewVersionMessage": true, | |
"editor.parameterHints.enabled": false, | |
"security.workspace.trust.untrustedFiles": "open", | |
"workbench.fontAliasing": "antialiased", | |
"workbench.activityBar.visible": false, | |
"breadcrumbs.enabled": false, | |
"workbench.editor.showTabs": false, | |
"composerCompanion.enabled": true, | |
"phpConstructor.visibility": "public", | |
"php-cs-fixer.onsave": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment