mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-31 22:07:25 -08:00
9ecd7c09a4
introducing a map of named standard color values that can be referenced in theme segments
18 lines
382 B
JSON
18 lines
382 B
JSON
{
|
|
"go.lintTool": "golangci-lint",
|
|
"go.useLanguageServer": true,
|
|
"go.languageServerExperimentalFeatures": {
|
|
"diagnostics": false
|
|
},
|
|
"go.lintFlags": ["--fast"],
|
|
"go.testOnSave": true,
|
|
"[go]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
}
|
|
},
|
|
"go.formatTool": "gofmt",
|
|
"go.formatFlags": ["-s"]
|
|
}
|