Skip to content

Commit 68cf7d2

Browse files
update .vscode config
1 parent 94daf7a commit 68cf7d2

3 files changed

Lines changed: 39 additions & 2 deletions

File tree

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ PRUEBAS/
1212
.ccls-cache/
1313
.cache/
1414

15-
#vscode
16-
.vscode
1715
.cproject
1816
.cache
1917

.vscode/c_cpp_properties.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"defines": [],
9+
"compilerPath": "/usr/bin/gcc",
10+
"cStandard": "c17",
11+
"cppStandard": "c++20",
12+
"intelliSenseMode": "linux-gcc-x64",
13+
"configurationProvider": "ms-vscode.cmake-tools",
14+
"compileCommands": "compile_commands.json"
15+
}
16+
],
17+
"version": 4
18+
}

.vscode/settings.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"files.exclude": {
3+
"**/.cache": true,
4+
"**/.cproject": true,
5+
"**/.gitignore": true,
6+
"**/.mxproject": true,
7+
"**/.project": true,
8+
"**/.settings": true,
9+
"**/arm-none-eabi.cmake": true,
10+
"**/build": true,
11+
"**/cmake_install.cmake": true,
12+
"**/CMakeFiles": true,
13+
"**/CMakeLists.txt": true,
14+
"**/compile_commands.json": true,
15+
"**/Debug": true,
16+
"**/libst-lib.a": true,
17+
"**/Makefile": true
18+
},
19+
"C_Cpp.default.cppStandard": "c++20",
20+
"C_Cpp.default.cStandard": "c17"
21+
}

0 commit comments

Comments
 (0)