Skip to content

Instantly share code, notes, and snippets.

@zant
Created July 6, 2019 22:27
Show Gist options
  • Select an option

  • Save zant/5b80f06c5668e07d589ca7a045e60aff to your computer and use it in GitHub Desktop.

Select an option

Save zant/5b80f06c5668e07d589ca7a045e60aff to your computer and use it in GitHub Desktop.
ma vscode's settings ✌️☮️
{
"workbench.colorTheme": "Material Theme Ocean High Contrast",
"workbench.statusBar.visible": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"window.zoomLevel": 0,
"editor.fontSize": 14,
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"files.exclude": {
"**/node_modules": true
},
"terminal.integrated.shell.osx": "/usr/local/bin/fish",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
// "editor.formatOnSave": true,
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"glsl-canvas.refreshOnChange": false,
"terminal.integrated.rendererType": "dom",
"C_Cpp.updateChannel": "Insiders",
"editor.renderIndentGuides": false,
"editor.lineHeight": 25,
"breadcrumbs.enabled": false,
"workbench.activityBar.visible": false,
"workbench.tree.renderIndentGuides": "none",
"editor.minimap.enabled": false,
"workbench.editor.showIcons": false,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.editor.enablePreview": false,
"flow.useNPMPackagedFlow": true,
"javascript.validate.enable": false,
"editor.fontLigatures": true,
"workbench.tree.indent": 20,
"editor.renderLineHighlight": "none",
"editor.tabSize": 2,
"workbench.fontAliasing": "antialiased",
"workbench.settings.editor": "json",
"workbench.colorCustomizations": {
// "sideBar.background": "#040a0f",
"gitDecoration.untrackedResourceForeground": "#74b48f",
"gitDecoration.modifiedResourceForeground": "#bebd64",
"tab.activeBorder": "#7cb1b8"
},
"workbench.editor.tabCloseButton": "right",
"editor.fontWeight": "300",
"colorize.languages": [
"css",
"sass",
"scss",
"less",
"postcss",
"sss",
"stylus",
"xml",
"svg",
"javascript",
"json"
],
"workbench.settings.openDefaultKeybindings": true,
"editor.tokenColorCustomizations": {
"[Material Theme Ocean High Contrast]": {
"textMateRules": [
{
"name": "Operator, Misc",
"scope": [
"keyword.control",
"constant.other.color",
"punctuation.definition.tag",
"punctuation",
"punctuation.separator.inheritance.php",
"punctuation.definition.tag.html",
"punctuation.definition.tag.begin.html",
"punctuation.definition.tag.end.html",
"punctuation.section.embedded",
"keyword.other.template",
"keyword.other.substitution"
],
"settings": {
"foreground": "#7cb1b8"
}
},
{
"name": "Regular Expressions",
"scope": ["string.regexp"],
"settings": {
"foreground": "#83dce7"
}
},
{
"name": "Escape Characters",
"scope": ["constant.character.escape"],
"settings": {
"foreground": "#83dce7"
}
},
{
"name": "String, Symbols, Inherited Class, Markup Heading",
"scope": [
"string",
"constant.other.symbol",
"constant.other.key",
"entity.other.inherited-class",
"markup.heading",
"markup.inserted.git_gutter",
"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js"
],
"settings": {
"foreground": "#acdbb8"
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment