webwesen
3/12/2017 - 7:03 PM

vscode.json

// Place your settings in this file to overwrite the default settings
{
	// Controls the font size.
	"editor.fontSize": 15,
    "editor.renderWhitespace": "all",
    // "editor.cursorStyle": "block-outline",
	
	// Go stuff
	"go.buildOnSave": true,
    "go.lintOnSave": true,
    "go.vetOnSave": true,
    "go.formatTool": "goreturns",
    "go.gopath": "/_projects/golang",

    // color
    "workbench.colorTheme": "Monokai",

    // minimap
    "editor.minimap.enabled": true,
    "editor.minimap.renderCharacters": false,

    // icons
    "workbench.iconTheme": "vs-seti"
}