Skip to content

Instantly share code, notes, and snippets.

@ajstarks
Created November 24, 2018 16:30
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 ajstarks/7a5009bfb63f61bd07f2d7b991e54507 to your computer and use it in GitHub Desktop.
Save ajstarks/7a5009bfb63f61bd07f2d7b991e54507 to your computer and use it in GitHub Desktop.
// Place your settings in this file to overwrite the default settings
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "keyword",
"settings": {
"foreground": "#AA0000"
}
}
],
"keywords": "#AA0000",
"comments": "#AAAAAA",
"strings": "#0000AA",
"numbers": "#000000"
},
"editor.renderIndentGuides": false,
"editor.minimap.enabled": false,
"editor.fontFamily": "Inconsolata",
"editor.lineNumbers": "off",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "block",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": false,
"git.ignoreLegacyWarning": true,
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 0,
"workbench.editor.showTabs": true,
"editor.detectIndentation": true,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"workbench.colorTheme": "Visual Studio Light",
"editor.autoClosingQuotes": "never",
"editor.autoClosingBrackets": "never",
"go.buildOnSave": "off",
"go.formatTool": "goreturns",
"go.vetOnSave": "workspace",
"go.lintOnSave": "workspace",
"breadcrumbs.enabled": false,
"editor.insertSpaces": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment