So, let me get this straight... Just by placing the snippets file in the (otherwise Git-ignored) .vscode directory, the code snippets light up for that Git repository?
That is correct. The .vscode directory is used for repository-local overrides and additions. Another neat feature is that you can recommend extensions for contributors with a .vscode/extensions.json. Although there's no good reason to edit that one manually, because that's what "Add to Workspace Recommendations" is for in the extension settings. Just git add it and it's good to go.
That is correct. The
.vscode
directory is used for repository-local overrides and additions. Another neat feature is that you can recommend extensions for contributors with a.vscode/extensions.json
. Although there's no good reason to edit that one manually, because that's what "Add to Workspace Recommendations" is for in the extension settings. Justgit add
it and it's good to go.