From e9bc7953f8f66c6070b5a9c64d2b5717c2eaece1 Mon Sep 17 00:00:00 2001 From: Freek van Tienen Date: Thu, 21 Jun 2018 10:56:37 +0200 Subject: [PATCH] Add VSC settings --- .vscode/c_cpp_properties.json | 22 ++++++++++++++++++++++ .vscode/settings.json | 11 +++++++++++ 2 files changed, 33 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 0000000000..0b309179b7 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,22 @@ +{ + "configurations": [ + { + "name": "Linux", + "browse": { + "path": [ + "${workspaceFolder}" + ], + "limitSymbolsToIncludedHeaders": true + }, + "includePath": [ + "${workspaceFolder}" + ], + "defines": [], + "compilerPath": "/usr/bin/arm-none-eabi-gcc", + "cStandard": "c11", + "cppStandard": "c++17", + "intelliSenseMode": "clang-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..1dba363774 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "[c]": { + "editor.tabSize": 2, + }, + "[cpp]": { + "editor.tabSize": 2, + }, + "[python]": { + "editor.tabSize": 4, + }, +} \ No newline at end of file