Skip to content

Instantly share code, notes, and snippets.

@wcharczuk
Created June 12, 2018 03:36
Show Gist options
  • Save wcharczuk/64af391d7a844e0dd3f08eb01ffd9991 to your computer and use it in GitHub Desktop.
Save wcharczuk/64af391d7a844e0dd3f08eb01ffd9991 to your computer and use it in GitHub Desktop.
{
// editor stuff
"editor.formatOnSave": true,
"editor.codeLens": false,
"editor.autoClosingBrackets": false,
"editor.quickSuggestionsDelay": 250,
"editor.roundedSelection": false,
"editor.fontFamily": "Source Code Pro",
"editor.fontSize": 13,
"editor.glyphMargin": true,
"editor.wordBasedSuggestions": false,
"editor.detectIndentation": true,
"editor.lineNumbers": "relative",
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.renderIndentGuides": false,
"editor.wordWrap": "off",
// misc stuff
"window.nativeTabs": true,
"window.zoomLevel": 0,
"telemetry.enableTelemetry": false,
// workbench stuff
"workbench.activityBar.visible": false,
"workbench.colorTheme": "Base16 Dark Ocean",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.iconTheme": "vs-minimal",
"workbench.list.multiSelectModifier": "alt",
"workbench.list.openMode": "singleClick",
"workbench.sideBar.location": "left",
"workbench.startupEditor": "none",
"workbench.statusBar.visible": true,
"workbench.tips.enabled": false,
"workbench.colorCustomizations": {
"statusBar.background": "#343D46",
"statusBar.noFolderBackground": "#343D46",
"statusBar.debuggingBackground": "#343D46"
},
"go.useLanguageServer": false,
"go.useCodeSnippetsOnFunctionSuggest": false,
"go.formatTool": "goimports",
"go.docsTool": "gogetdoc",
"[go]": {
"editor.insertSpaces": false,
"editor.tabSize": 4
},
// html / js stuff
"html.format.wrapLineLength": 0,
"html.format.enable": false,
"[javascript]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[javascriptreact]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"typescript.check.npmIsInstalled": false,
"vim.overrideCopy": false,
"vim.statusBarColorControl": true,
"vim.foldfix": true,
"vim.easymotion": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment