Skip to content

Instantly share code, notes, and snippets.

@thetutlage
Created December 1, 2018 08:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thetutlage/d1857229ffe9117811509b85496b53e7 to your computer and use it in GitHub Desktop.
Save thetutlage/d1857229ffe9117811509b85496b53e7 to your computer and use it in GitHub Desktop.
My VsCode settings.json file
{
"workbench.colorTheme": "Plastic - deprioritised punctuation",
"workbench.statusBar.visible": false,
"editor.fontFamily": "operator mono",
"editor.fontWeight": "300",
"typescript.tsserver.log": "verbose",
"editor.matchBrackets": false,
"editor.renderLineHighlight": "gutter",
"workbench.iconTheme": null,
"editor.lineHeight": 30,
"window.zoomLevel": 0,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "storage.type.class.jsdoc, punctuation.definition.block.tag.jsdoc, punctuation.definition.bracket.curly.begin.jsdoc, punctuation.definition.bracket.curly.end.jsdoc,variable.other.jsdoc",
"settings": {
"foreground": "#65737eff",
}
}
]
},
"editor.minimap.enabled": false,
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": false,
"explorer.openEditors.visible": 0,
"workbench.activityBar.visible": false,
"workbench.editor.showIcons": false,
"editor.fontLigatures": true,
"editor.occurrencesHighlight": false,
"editor.selectionHighlight": false,
"workbench.colorCustomizations": {
"tab.activeBorder": "#0000",
"editorLineNumber.foreground": "#56565687",
"editor.lineHighlightBackground": "#0000",
},
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment