129 lines
3.4 KiB
JSON
129 lines
3.4 KiB
JSON
{
|
|
"cSpell.language": "en,en-US",
|
|
|
|
"editor.fontFamily": "\"Hack\", monospace",
|
|
"editor.fontSize": 14,
|
|
"editor.wordWrap": "off",
|
|
"editor.renderWhitespace": "boundary",
|
|
"editor.detectIndentation": false,
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 4,
|
|
"editor.fontLigatures": true,
|
|
"editor.bracketPairColorization.enabled": true,
|
|
"editor.guides.bracketPairs": "active",
|
|
"editor.hover.above": false,
|
|
|
|
"explorer.confirmDragAndDrop": true,
|
|
"explorer.confirmDelete": true,
|
|
|
|
"files.autoSave": "afterDelay",
|
|
"files.autoSaveDelay": 2000,
|
|
"files.associations": {
|
|
"*.jenkins": "groovy",
|
|
"*.tplt": "html",
|
|
"*.json": "json",
|
|
"*.jsonc": "jsonc"
|
|
},
|
|
"files.eol": "\n",
|
|
|
|
"git.autofetch": true,
|
|
"git.enableSmartCommit": true,
|
|
"git.untrackedChanges": "separate",
|
|
"git.enableCommitSigning": false,
|
|
"go.buildFlags": [],
|
|
"go.coverOnSave": true,
|
|
"go.coverageDecorator": {
|
|
"type": "gutter",
|
|
"coveredGutterStyle": "verticalgreen",
|
|
"uncoveredGutterStyle": "verticalred"
|
|
},
|
|
"go.formatTool": "goimports",
|
|
"go.gopath": "${HOME}/.cache/go",
|
|
"go.goroot": "${HOME}/.apps/go",
|
|
"go.lintFlags": [
|
|
"--fast"
|
|
],
|
|
"go.lintOnSave": "package",
|
|
"go.lintTool": "golangci-lint",
|
|
"go.toolsManagement.autoUpdate": true,
|
|
"go.useLanguageServer": true,
|
|
"go.vetOnSave": "package",
|
|
|
|
|
|
"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": "explicit"
|
|
}
|
|
},
|
|
|
|
"[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
|
|
},
|
|
|
|
"git.openRepositoryInParentFolders": "never",
|
|
"editor.stickyScroll.enabled": false,
|
|
|
|
"comments.plugins": {
|
|
"Code Spell Checker": "streetsidesoftware.code-spell-checker",
|
|
"Git Graph": "mhutchie.git-graph",
|
|
"Go": "golang.go",
|
|
"indent-rainbow": "oderwat.indent-rainbow",
|
|
"Material Theme": "equinusocio.vsc-material-theme",
|
|
"Material Theme Icons": "equinusocio.vsc-material-theme-icons",
|
|
"Mermaid Markdown Syntax Highlighting": "bpruitt-goddard.mermaid-markdown-syntax-highlighting",
|
|
"ShellCheck": "timonwong.shellcheck"
|
|
},
|
|
|
|
"comments.notes": [
|
|
"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."
|
|
]
|
|
} |