diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2019-12-22 19:47:21 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2019-12-22 21:12:58 +0100 |
| commit | 6370b3fc6ffb973cc272f18d18db521c02fea0f1 (patch) | |
| tree | da965d0a1bb37d523d5e840d74f9a07676a818a0 /.vscode | |
| download | newtype-6370b3fc6ffb973cc272f18d18db521c02fea0f1.tar.xz newtype-6370b3fc6ffb973cc272f18d18db521c02fea0f1.zip | |
newtype: initial commit
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/c_cpp_properties.json | 16 | ||||
| -rw-r--r-- | .vscode/settings.json | 72 |
2 files changed, 88 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..179e475 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,16 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [], + "compilerPath": "/usr/bin/clang", + "cppStandard": "c++20", + "intelliSenseMode": "clang-x64", + "configurationProvider": "go2sh.cmake-integration" + } + ], + "version": 4 +}
\ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..fd771a0 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,72 @@ +{ + "files.associations": { + ".clang-format": "yaml", + "array": "cpp", + "chrono": "cpp", + "functional": "cpp", + "istream": "cpp", + "ostream": "cpp", + "ratio": "cpp", + "tuple": "cpp", + "type_traits": "cpp", + "utility": "cpp", + "variant": "cpp", + "atomic": "cpp", + "hash_map": "cpp", + "bit": "cpp", + "*.tcc": "cpp", + "cctype": "cpp", + "clocale": "cpp", + "cmath": "cpp", + "condition_variable": "cpp", + "cstdarg": "cpp", + "cstddef": "cpp", + "cstdint": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "cstring": "cpp", + "ctime": "cpp", + "cwchar": "cpp", + "cwctype": "cpp", + "deque": "cpp", + "list": "cpp", + "map": "cpp", + "set": "cpp", + "unordered_map": "cpp", + "vector": "cpp", + "exception": "cpp", + "algorithm": "cpp", + "iterator": "cpp", + "memory": "cpp", + "memory_resource": "cpp", + "numeric": "cpp", + "optional": "cpp", + "random": "cpp", + "string": "cpp", + "string_view": "cpp", + "system_error": "cpp", + "fstream": "cpp", + "initializer_list": "cpp", + "iomanip": "cpp", + "iosfwd": "cpp", + "iostream": "cpp", + "limits": "cpp", + "mutex": "cpp", + "new": "cpp", + "sstream": "cpp", + "stdexcept": "cpp", + "streambuf": "cpp", + "thread": "cpp", + "cfenv": "cpp", + "cinttypes": "cpp", + "typeinfo": "cpp", + "valarray": "cpp" + }, + "cmake.configureArguments": "-DCMAKE_EXPORT_COMPILE_COMMANDS=YES", + "cmake.cpptools.intelliSenseMode": "gcc-x64", + "cmake.cpptools.guessSourceFileConfigurations": true, + "[cpp]": { + "editor.formatOnSave": true + }, + "restructuredtext.confPath": "${workspaceFolder}/doc/src" +}
\ No newline at end of file |
