vscode-settings/settings.json
2021-10-27 13:40:56 +00:00

119 lines
3.4 KiB
JSON

{
"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
},
"comments-plugins": {
"Code Spell Checker": "https://open-vsx.org/extension/streetsidesoftware/code-spell-checker",
"Git Graph": "https://open-vsx.org/extension/mhutchie/git-graph",
"GitLens": "https://open-vsx.org/extension/eamodio/gitlens",
"Go": "https://open-vsx.org/extension/golang/Go",
"indent-rainbow": "https://open-vsx.org/extension/oderwat/indent-rainbow",
"Material Theme": "https://open-vsx.org/extension/Equinusocio/vsc-material-theme",
"Material Theme Icons": "https://open-vsx.org/extension/Equinusocio/vsc-material-theme-icons"
},
"comments-notes": [
"The original go-bindata has been archived. The new maintained version is located at: github.com/kevinburke/go-bindata",
"Hack font is located at: https://sourcefoundry.org/hack/",
"Debugging Documentation is located at: https://github.com/Microsoft/vscode-go/wiki/Debugging-Go-code-using-VS-Code"
],
"comments-gpg-config": [
"git config --global user.name <github username>",
"git config --global user.email <email address>",
"git config --global user.signingkey <signing key id>",
"git config --global commit.gpgsign true",
"git config --global gpg.program C:\\Program Files (x86)\\GnuPG\\bin\\gpg.exe",
"Note: The slashes in the are escaped for the sake of JSON."
]
}