Skip to content

Instantly share code, notes, and snippets.

@empurium
Last active June 18, 2020 20:17
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 empurium/8bf67dcc86a545c043ff31c96ef4b9ca to your computer and use it in GitHub Desktop.
Save empurium/8bf67dcc86a545c043ff31c96ef4b9ca to your computer and use it in GitHub Desktop.
Visual Studio Code Config
{
"breadcrumbs.enabled": true,
"window.clickThroughInactive": false,
"window.newWindowDimensions": "inherit",
"window.restoreWindows": "none",
"window.zoomLevel": 0,
"window.title": "${folderName}",
"editor.cursorSurroundingLines": 8,
"editor.dragAndDrop": false,
"editor.fontSize": 14,
"editor.hover.delay": 150,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "alt",
"editor.quickSuggestionsDelay": 250,
"editor.smoothScrolling": true,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.wordWrapColumn": 120,
"editor.tokenColorCustomizations": {
"comments": "#505053",
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[javascript]": {
"editor.formatOnSave": true
},
"merge-conflict.diffViewPosition": "Below",
"explorer.autoReveal": false,
"explorer.confirmDelete": false,
"diffEditor.ignoreTrimWhitespace": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.colorCustomizations": {
"activityBar.activeBorder": "#63b6e6",
"activityBar.activeBackground": "#63b6e630",
"breadcrumb.background": "#1e1e1e",
"editor.background": "#111111",
"sideBar.background": "#1e1e1e",
"panel.background": "#1e1e1e",
"terminal.background": "#111111",
"statusBar.background": "#2e2f31",
"diffEditor.insertedTextBackground": "#58cc7b1e",
"diffEditor.removedTextBackground": "#ff00001e",
"editorBracketMatch.border": "#ff0000b2",
"editorGutter.addedBackground": "#58cc7bbe",
"editorGutter.modifiedBackground": "#40aae7be",
"editorGutter.deletedBackground": "#ff0000",
"gitlens.trailingLineForegroundColor": "#63b6e645",
"gitDecoration.modifiedResourceForeground": "#63b6e6",
"gitDecoration.untrackedResourceForeground": "#58cc7b",
"gitDecoration.ignoredResourceForeground": "#555555",
"gitDecoration.conflictingResourceForeground": "#ff0000",
},
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.openPositioning": "last",
"workbench.editor.showIcons": true,
"workbench.editor.showTabs": true,
"workbench.editor.tabCloseButton": "off",
"workbench.editor.tabSizing": "shrink",
"workbench.iconTheme": "vscode-great-icons",
"workbench.sideBar.location": "left",
"workbench.startupEditor": "none",
"workbench.statusBar.visible": true,
"search.smartCase": true,
"git.confirmSync": false,
"git.untrackedChanges": "separate",
"debug.openExplorerOnEnd": true,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.fontWeightBold": "normal",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1.2,
"terminal.integrated.rendererType": "canvas",
"terminal.integrated.scrollback": 10000,
"gitlens.advanced.maxListItems": 20,
"gitlens.advanced.messages": {
"suppressLineUncommittedWarning": true,
"suppressShowKeyBindingsNotice": true
},
"gitlens.codeLens.scopes": [
"document",
"containers",
"blocks"
],
"gitlens.codeLens.enabled": false,
"gitlens.currentLine.scrollable": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.hovers.currentLine.changes": false,
"gitlens.hovers.currentLine.details": false,
"gitlens.hovers.currentLine.enabled": false,
"gitlens.statusBar.reduceFlicker": true,
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.fileHistory.location": "explorer",
"gitlens.views.lineHistory.enabled": true,
"gitlens.views.lineHistory.location": "explorer",
"eslint.alwaysShowStatus": true,
"eslint.packageManager": "yarn",
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"zenMode.hideTabs": false,
"extensions.ignoreRecommendations": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"vsintellicode.java.completionsEnabled": false,
"vsintellicode.python.completionsEnabled": false,
"timeline.excludeSources": [
"git-history"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment