Created
July 24, 2017 21:11
-
-
Save campoy/97ac0623d2c1e893caa53ccf5655fa49 to your computer and use it in GitHub Desktop.
My vscode settings
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
{ | |
"window.zoomLevel": 0, | |
"go.lintOnSave": "package", | |
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": false, | |
"workbench.iconTheme": "vs-seti", | |
"go.addTags": { | |
"tags": "json", | |
"options": "json=omitempty", | |
"promptForTags": true, | |
"transform": "snakecase" | |
}, | |
"go.editorContextMenuCommands": { | |
"toggleTestFile": true, | |
"addTags": true, | |
"removeTags": false, | |
"testAtCursor": false, | |
"testFile": false, | |
"testPackage": false, | |
"generateTestForFunction": false, | |
"generateTestForFile": false, | |
"generateTestForPackage": false, | |
"addImport": false, | |
"testCoverage": false | |
}, | |
"workbench.colorTheme": "Monokai", | |
"debug.inlineValues": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment