Skip to content

Instantly share code, notes, and snippets.

@heikomat
Last active March 11, 2018 17:06
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 heikomat/dd74efc70c4ebba3441553c2be92f776 to your computer and use it in GitHub Desktop.
Save heikomat/dd74efc70c4ebba3441553c2be92f776 to your computer and use it in GitHub Desktop.
vscode_settings
{
"workbench.statusBar.visible": true,
"files.insertFinalNewline": true,
"editor.scrollBeyondLastLine": false,
"editor.emptySelectionClipboard": false,
"editor.tabSize": 2,
"eslint.autoFixOnSave": true,
"tslint.autoFixOnSave": true,
"vsicons.projectDetection.autoReload": true,
"editor.rulers": [80, 120],
"search.followSymlinks": false,
"search.exclude": {
"**/node_modules": false,
"**/bower_components": true
},
"terminal.integrated.scrollback": 100000,
"editor.cursorBlinking": "solid",
"editor.wordWrap": "off",
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 2,
"workbench.colorTheme": "Atom One Dark",
"typescript.tsdk": "./node_modules/typescript/lib",
"workbench.colorCustomizations": {
"scrollbar.shadow": "#2d314a",
"editor.background": "#2d314a",
"editor.lineHighlightBackground": "#2d314a",
"editor.lineHighlightBackground_": "#323652",
"editor.selectionBackground": "#3b4061",
"titleBar.activeBackground": "#2d314a",
"titleBar.inactiveBackground": "#2d314a",
"editorGroup.border": "#353957",
"editorGroupHeader.tabsBackground": "#2d314a",
"tab.activeBackground": "#41476b",
"tab.inactiveBackground": "#2d314a",
"tab.border": "#2d314a",
"activityBar.background": "#2d314a",
"sideBar.background": "#2d314a",
"sideBar.border": "#353957",
"list.hoverBackground": "#3b4061",
"list.inactiveSelectionBackground": "#3b4061",
"list.activeSelectionBackground": "#3b4061",
"statusBar.background": "#2d314a",
"statusBar.noFolderBackground": "#2d314a",
"sideBarSectionHeader.background": "#2d314a",
"panel.border": "#353957",
"panel.border_": "#272a40",
"editorIndentGuide.background": "#353957"
},
"editor.fontFamily": "SF Mono, Consolas, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.fontWeight": "100",
"terminal.integrated.fontFamily": "SF Mono, Consolas, 'Courier New', monospace",
"terminal.integrated.fontSize": 12,
"editor.minimap.enabled": false,
"editor.renderIndentGuides": true,
"editor.overviewRulerBorder": false,
"workbench.activityBar.visible": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.panel.location": "bottom",
"explorer.confirmDragAndDrop": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment