vscode-settings/settings.json
2025-01-05 13:46:30 -06:00

141 lines
3.8 KiB
JSON

{
"cSpell.language": "en,en-US",
"cSpell.diagnosticLevel": "Hint",
"editor.fontFamily": "\"Hack\", monospace",
"editor.wordWrap": "off",
"editor.fontSize": 14,
"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": true,
"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",
"go.buildFlags": [],
"go.testOnSave": false,
"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",
"go.coverOnSingleTest": 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.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,
"diffEditor.ignoreTrimWhitespace": 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."
],
"comments.smooth-scrolling": [
"This block smooths out a lot of effects making it easier on the eyes.",
"Some people will not find this appealing, mostly VIM users."
],
"editor.smoothScrolling": true,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"workbench.list.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true,
"terminal.integrated.cursorBlinking": true
}