提示true值不对看了下 给出的值没有true 还提示一个设置无效。翻阅了很多文档都是这么设置的 具体的请看图片。刚入坑配置go插件配了好几天好不容易翻墙弄好了 设置有不对 头大呀![新建位图图像.jpg](https://static.studygolang.com/180331/4512b6c67e6c667c773384633f78aba2.jpg)![新建位图图像.jpg]
**共享一个我的配置,一直用VS code 开发 新版的还支持命令窗口分栏 很好用**
```json
{
"window.zoomLevel": 1,
"files.autoSave": "onFocusChange",
"workbench.activityBar.visible": true,
"editor.minimap.enabled": false,
"editor.fontFamily": "'Courier New', 'Courier New', 'Courier New'",
"editor.fontSize": 16,
"extensions.autoUpdate": false,
"editor.fontWeight": "500",
"workbench.sideBar.location": "left",
"go.toolsGopath": "E:\\vscodebin\\bin",
"window.menuBarVisibility": "default",
"workbench.editor.showTabs": true,
"workbench.statusBar.visible": true,
"go.gotoSymbol.includeImports": true,
"go.autocompleteUnimportedPackages": true,
"window.title": "${dirty}$${activeEditorMedium}${separator}${rootName}${separator}${appName}",
"explorer.autoReveal": false,
"workbench.editor.enablePreview": false,
"update.channel": "default",
"terminal.integrated.cwd": ".",
"workbench.iconTheme": "vscode-icons",
"gulp.autoDetect": "off",
"editor.find.autoFindInSelection": false,
"terminal.integrated.cursorBlinking": false,
"editor.selectionHighlight": true,
"go.coverageDecorator": "highlight",
"editor.renderLineHighlight": "line",
"window.autoDetectHighContrast": true,
"git.autofetch": false,
"editor.occurrencesHighlight": false,
"workbench.colorTheme": "One Dark Pro",
"vsicons.dontShowNewVersionMessage": true,
"terminal.integrated.shell.windows": "D:\\Program Files\\cmder\\vendor\\git-for-windows\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": [],
"editor.lineHeight": 20,
"go.useCodeSnippetsOnFunctionSuggest": true,
}
```
#1