Created
November 24, 2018 16:30
-
-
Save ajstarks/7a5009bfb63f61bd07f2d7b991e54507 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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