Skip to content

Instantly share code, notes, and snippets.

@thetutlage
Created June 26, 2019 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thetutlage/2da4a808a80bf0662f91b1a14602f9d0 to your computer and use it in GitHub Desktop.
Save thetutlage/2da4a808a80bf0662f91b1a14602f9d0 to your computer and use it in GitHub Desktop.
My Vscode settings
{
"workbench.colorTheme": "Plastic",
"workbench.statusBar.visible": false,
"editor.fontFamily": "operator mono",
"typescript.tsserver.log": "verbose",
"editor.matchBrackets": false,
"editor.renderLineHighlight": "gutter",
"workbench.iconTheme": null,
"window.zoomLevel": 0,
"editor.minimap.enabled": false,
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": false,
"explorer.openEditors.visible": 0,
"workbench.editor.showIcons": false,
"editor.fontLigatures": true,
"editor.occurrencesHighlight": false,
"editor.selectionHighlight": false,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 110,
"editor.tabSize": 2,
"editor.fontSize": 15,
"editor.foldingStrategy": "indentation",
"window.nativeFullScreen": true,
"markdown-preview-enhanced.frontMatterRenderingOption": "table",
"zenMode.hideLineNumbers": false,
"markdown.preview.fontFamily": "dank mono",
"markdown.preview.fontSize": 15,
"markdown.preview.lineHeight": 1.7,
"editor.lineHeight": 32,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "storage.type.class.jsdoc, entity.name.type.instance.jsdoc, variable.other.jsdoc, markup.inline.raw.string.markdown, punctuation.definition.string.template.begin.tsx, string.template.tsx, punctuation.definition.block.tag.jsdoc, punctuation.definition.bracket.curly.begin.jsdoc, punctuation.definition.bracket.curly.end.jsdoc, punctuation.definition.raw.markdown, punctuation.definition.list.begin.markdown, punctuation.definition.markdown, markup.fenced_code.block.markdown, meta.paragraph.markdown",
"settings": {
"foreground": "#4C566A"
},
},
{
"scope": [
"entity.other.attribute-name",
"keyword.control.flow.ts",
"keyword.control.export.ts",
"keyword.control.default.ts"
],
"settings": {
"fontStyle": ""
}
}
],
"[One Dark Pro Vivid]": {
"comments": "#5c6370",
}
},
"typescript.suggest.completeJSDocs": false,
"window.titleBarStyle": "custom",
"workbench.activityBar.visible": false,
"breadcrumbs.enabled": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment