chore(vscode): add vscode config

This commit is contained in:
iridiumR 2022-09-18 12:23:26 +08:00
parent 14dc5a0975
commit c1a1726430
No known key found for this signature in database
GPG Key ID: 5574BE4450D55618
2 changed files with 24 additions and 0 deletions

18
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,18 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++14",
"intelliSenseMode": "linux-clang-x64",
"configurationProvider": "ms-vscode.makefile-tools"
}
],
"version": 4
}

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"files.associations": {
"stdio.h": "c"
},
"editor.tabSize": 2
}