Skip to content

Instantly share code, notes, and snippets.

@dglowinski
Last active October 5, 2021 16:37
Show Gist options
  • Save dglowinski/207c29fc9c85ad57e52b671722aecb6e to your computer and use it in GitHub Desktop.
Save dglowinski/207c29fc9c85ad57e52b671722aecb6e to your computer and use it in GitHub Desktop.
{
"editor.fontSize": 14,
"editor.tabSize": 2,
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Monokai",
"git.confirmSync": false,
"editor.fontFamily": " 'Monaco', 'Consolas', 'Inconsolata', 'Courier New', 'Courier'",
"jshint.options": {
"esversion":6,
"asi": true
},
"workbench.statusBar.visible": true,
"window.menuBarVisibility": "toggle",
"typescript.referencesCodeLens.enabled": false,
"php.validate.run": "onType",
"typescript.check.tscVersion": false,
"editor.multiCursorModifier": "ctrlCmd",
"git.enableSmartCommit": true,
"gitlens.blame.file.annotationType": "hover",
"workbench.panel.location": "bottom",
"git.autofetch": true,
"typescript.experimental.syntaxFolding": true,
"npm.enableScriptExplorer": true,
"todo-tree.defaultHighlight": {
"foreground": "green",
"type": "none"
},
"todo-tree.customHighlight": {
"TODO": {},
"FIXME": {}
},
"breadcrumbs.enabled": true,
"window.titleBarStyle": "custom",
"files.autoSave": "off",
"files.autoSaveDelay": 100,
"javascript.implicitProjectConfig.checkJs": true,
"sync.gist": "779ca6a26513c87ecea25d93c119ba8f",
"terminal.integrated.scrollback": 4000,
"solidity.enabledAsYouTypeCompilationErrorCheck": true,
"solidity.validationDelay": 1500,
"workbench.tree.renderIndentGuides": "none",
"todo-tree.highlights.customHighlight": {
"TODO": {},
"FIXME": {}
},
"todo-tree.highlights.defaultHighlight": {
"foreground": "green",
"type": "none"
},
"gitlens.views.compare.files.layout": "tree",
"todo-tree.tree.showScanModeButton": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.renderWhitespace": "trailing",
"[go]": {
"editor.insertSpaces": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"go.autocompleteUnimportedPackages": true,
"solidity.compileUsingRemoteVersion": "v0.8.6+commit.11564f7e",
"go.formatTool": "goimports",
"go.toolsManagement.autoUpdate": true,
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.inlineSuggest.enabled": true,
"[javascript]": {
"editor.autoClosingBrackets": "always"
},
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment