Add 'settings.json'

This commit is contained in:
Hyatt 2021-10-25 11:57:24 +00:00
parent 12cb683cbd
commit 453f6a352b

94
settings.json Normal file
View File

@ -0,0 +1,94 @@
{
"cSpell.language": "en,en-US",
"editor.fontFamily": "\"Hack\", monospace",
"editor.wordWrap": "off",
"editor.renderWhitespace": "boundary",
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.fontLigatures": true,
"editor.bracketPairColorization.enabled": true,
"explorer.confirmDragAndDrop": true,
"explorer.confirmDelete": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 2000,
"files.associations": {
"*.jenkins": "jenkins",
"*.tpl": "html",
"*.json": "json",
"*.jsonc": "jsonc"
},
"files.eol": "\n",
"git.autofetch": true,
"git.enableSmartCommit": true,
"git.untrackedChanges": "separate",
"git.enableCommitSigning": false,
"go.goroot": "/home/nhyatt/.apps/go",
"go.autocompleteUnimportedPackages": true,
"go.buildOnSave": "package",
"go.buildFlags": [],
"go.docsTool": "gogetdoc",
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"go.lintOnSave": "package",
"go.lintTool": "golangci-lint",
"go.lintFlags": [
"--fast"
],
"go.vetOnSave": "package",
"go.toolsManagement.autoUpdate": true,
"telemetry.telemetryLevel": "off",
"terminal.integrated.profiles.linux": {
"bash": {
"path": [
"/usr/bin/env bash",
"/usr/bin/bash",
"/bin/bash"
],
"icon": "terminal-bash"
},
},
"window.titleBarStyle": "custom",
"workbench.colorTheme": "Material Theme Darker High Contrast",
"workbench.iconTheme": "eq-material-theme-icons-darker",
"workbench.settings.editor": "json",
"workbench.editor.enablePreview": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.sideBar.location": "left",
"[go]": {
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"[yaml]": {
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[json]": {
"editor.detectIndentation": true,
"editor.insertSpaces": false,
"editor.tabSize": 2
},
"[html]": {
"editor.tabSize": 4,
"editor.insertSpaces": false
}
}