Skip to content

Instantly share code, notes, and snippets.

@mouadziani
Last active May 13, 2019 05:05
Show Gist options
  • Save mouadziani/34e6c84c8fb6de71fa29bbac99beb108 to your computer and use it in GitHub Desktop.
Save mouadziani/34e6c84c8fb6de71fa29bbac99beb108 to your computer and use it in GitHub Desktop.
Awesome settings for VSCode
{
"workbench.colorTheme": "Material Theme Darker",
"workbench.iconTheme": "Monokai Classic Icons",
"materialTheme.cache.workbench.settings": {
"themeColours": "Default",
"accent": "Teal",
"accentPrevious": "Orange"
},
"editor.fontSize": 14,
"editor.lineHeight": 26,
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.wordWrap": "on",
"editor.colorDecorators": false,
"files.insertFinalNewline": false,
"files.trimTrailingWhitespace": true,
"editor.smoothScrolling": true,
"editor.multiCursorModifier": "ctrlCmd",
"php.validate.run": "onType",
"editor.quickSuggestions": {
"strings": true
},
"editor.snippetSuggestions": "top",
"editor.selectionHighlight": false,
"workbench.colorCustomizations": {
"editor.selectionBackground": "#333"
},
"search.exclude": {
"**/vendor": true,
"**/storage/app": true,
"**/storage/framework": true
},
"highlight-matching-tag.leftStyle": {
"borderWidth": "1px",
"borderStyle": "solid",
"borderColor": "white",
"borderRadius": "5px"
},
"highlight-matching-tag.rightStyle": {
"borderWidth": "1px",
"borderStyle": "solid",
"borderColor": "white",
"borderRadius": "5px"
},
"emmet.includeLanguages": {
"blade": "html"
},
"emmet.triggerExpansionOnTab": true,
"aceJump.finder.onlyInitialLetter": false,
"phpcs.enable": true,
"phpcs.standard": "PSR2",
"window.zoomLevel": 0,
"sublimeTextKeymap.promptV3Features": true,
"editor.formatOnPaste": true,
"editor.cursorStyle": "line",
"window.openFilesInNewWindow": "on",
"workbench.editor.enablePreviewFromQuickOpen": false,
"explorer.openEditors.visible": 0,
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"editor.tokenColorCustomizations": {
"textMateRules": [{
"scope": [
"comment",
"comment.block",
"comment.block.documentation",
"comment.line",
"constant",
"constant.character",
"constant.character.escape",
"constant.numeric",
"constant.numeric.integer",
"constant.numeric.float",
"constant.numeric.hex",
"constant.numeric.octal",
"constant.other",
"constant.regexp",
"constant.rgb-value",
"emphasis",
"entity",
"entity.name",
"entity.name.class",
"entity.name.function",
"entity.name.method",
"entity.name.section",
"entity.name.selector",
"entity.name.tag",
"entity.name.type",
"entity.other",
"entity.other.attribute-name",
"entity.other.inherited-class",
"invalid",
"invalid.deprecated",
"invalid.illegal",
"keyword",
"keyword.control",
"keyword.operator",
"keyword.operator.new",
"keyword.operator.assignment",
"keyword.operator.arithmetic",
"keyword.operator.logical",
"keyword.other",
"markup",
"markup.bold",
"markup.changed",
"markup.deleted",
"markup.heading",
"markup.inline.raw",
"markup.inserted",
"markup.italic",
"markup.list",
"markup.list.numbered",
"markup.list.unnumbered",
"markup.other",
"markup.quote",
"markup.raw",
"markup.underline",
"markup.underline.link",
"meta",
"meta.block",
"meta.cast",
"meta.class",
"meta.function",
"meta.function-call",
"meta.preprocessor",
"meta.return-type",
"meta.selector",
"meta.tag",
"meta.type.annotation",
"meta.type",
"punctuation.definition.string.begin",
"punctuation.definition.string.end",
"punctuation.separator",
"punctuation.separator.continuation",
"punctuation.terminator",
"storage",
"storage.modifier",
"storage.type",
"string",
"string.interpolated",
"string.other",
"string.quoted",
"string.quoted.double",
"string.quoted.other",
"string.quoted.single",
"string.quoted.triple",
"string.regexp",
"string.unquoted",
"strong",
"support",
"support.class",
"support.constant",
"support.function",
"support.other",
"support.type",
"support.type.property-name",
"support.variable",
"variable",
"variable.language",
"variable.name",
"variable.other",
"variable.other.readwrite",
"variable.parameter"
],
"settings": {
"fontStyle": ""
}
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment