Adds comments

This commit is contained in:
Hyatt 2021-10-27 13:40:56 +00:00
parent 8badce04ef
commit 86be68d04a

View File

@ -90,5 +90,30 @@
"[html]": { "[html]": {
"editor.tabSize": 4, "editor.tabSize": 4,
"editor.insertSpaces": false "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."
]
} }