Add VS Code extensions

This commit is contained in:
Aoran Zeng 2025-06-19 18:09:57 +08:00
parent 5cde6622b5
commit dd2333f0c8
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
!.vscode/c_cpp_properties.json
!.vscode/tasks.json

11
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"recommendations": [
"ms-vscode.cpptools",
"editorconfig.editorconfig",
"redhat.vscode-yaml",
"nefrob.vscode-just-syntax"
],
"unwantedRecommendations": [
"esbenp.prettier-vscode"
]
}