From c1a1726430374b7facbb6de628a7b1a0cd8b127e Mon Sep 17 00:00:00 2001 From: iridiumR Date: Sun, 18 Sep 2022 12:23:26 +0800 Subject: [PATCH] chore(vscode): add vscode config --- .vscode/c_cpp_properties.json | 18 ++++++++++++++++++ .vscode/settings.json | 6 ++++++ 2 files changed, 24 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/settings.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..91823ea --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -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 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ce6afbf --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "files.associations": { + "stdio.h": "c" + }, + "editor.tabSize": 2 +} \ No newline at end of file