Skip to content

Instantly share code, notes, and snippets.

@brookback
Created September 20, 2018 13:25
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 brookback/2ee5307060b3de19910a931bb716a67b to your computer and use it in GitHub Desktop.
Save brookback/2ee5307060b3de19910a931bb716a67b to your computer and use it in GitHub Desktop.
Johan's VS Code settings
{
"javascript.showUnused": false,
"typescript.showUnused": false,
"telemetry.enableTelemetry": false,
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"editor.tabSize": 2,
"workbench.startupEditor": "newUntitledFile",
"editor.fontFamily": "Fira Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 15,
"editor.wordWrapColumn": 120,
"editor.wordWrap": "bounded",
"explorer.openEditors.visible": 0,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true
},
"workbench.statusBar.feedback.visible": false,
"eslint.trace.server": "messages",
"eslint.alwaysShowStatus": true,
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
"workbench.colorTheme": "One Dark Pro",
"git.confirmSync": false,
"html.format.wrapLineLength": 100,
"html.format.indentHandlebars": true,
"html.format.indentInnerHtml": true,
"todohighlight.keywords": [
"XXX",
"FIXME",
"TODO"
],
"todohighlight.defaultStyle": {
"borderRadius": "2px",
"backgroundColor": "#2D3315",
"color": "yellow",
"overviewRulerColor": "#ffab00"
},
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.defaultDateStyle": "absolute",
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.statusBar.reduceFlicker": true,
"gitlens.codeLens.enabled": false,
"gitlens.historyExplorer.enabled": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.meteor/local/build": true
},
"window.zoomLevel": 0,
"workbench.colorCustomizations": {
"[One Dark Pro]": {
// "statusBar.background": "#4f80c9",
// "statusBar.foreground": "#d5e6ff",
// "statusBarItem.hoverBackground": "#456ac0",
// "statusBarItem.activeBackground": "#36559b",
// "statusBarItem.prominentBackground": "#1844aa",
// "statusBarItem.prominentHoverBackground": "#12368a",
"sideBar.background": "#282C35",
"list.hoverBackground": "#2d323d",
"list.activeSelectionBackground": "#333944",
"activityBar.background": "#20232b",
"tab.border": "#fff0",
"tab.activeBackground": "#282C35"
}
},
"files.associations": {
"*.html": "html"
},
"todo-tree.defaultHighlight": {
"foreground": "green",
"type": "none"
},
"todo-tree.customHighlight": {
"TODO": {},
"FIXME": {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment