aboutsummaryrefslogtreecommitdiff
path: root/gitstatus/.vscode
diff options
context:
space:
mode:
Diffstat (limited to 'gitstatus/.vscode')
-rw-r--r--gitstatus/.vscode/c_cpp_properties.json17
-rw-r--r--gitstatus/.vscode/settings.json72
2 files changed, 89 insertions, 0 deletions
diff --git a/gitstatus/.vscode/c_cpp_properties.json b/gitstatus/.vscode/c_cpp_properties.json
new file mode 100644
index 00000000..323a6cde
--- /dev/null
+++ b/gitstatus/.vscode/c_cpp_properties.json
@@ -0,0 +1,17 @@
+{
+ "configurations": [
+ {
+ "name": "Linux",
+ "includePath": [
+ "${workspaceFolder}/src"
+ ],
+ "defines": [
+ ],
+ "compilerPath": "/usr/bin/g++",
+ "cStandard": "c11",
+ "cppStandard": "c++17",
+ "intelliSenseMode": "gcc-x64"
+ }
+ ],
+ "version": 4
+}
diff --git a/gitstatus/.vscode/settings.json b/gitstatus/.vscode/settings.json
new file mode 100644
index 00000000..bec79f94
--- /dev/null
+++ b/gitstatus/.vscode/settings.json
@@ -0,0 +1,72 @@
+{
+ "files.exclude": {
+ "*.zwc": true,
+ "core": true,
+ "locks/": true,
+ "logs/": true,
+ "obj/": true,
+ "usrbin/": true,
+ },
+ "files.associations": {
+ "array": "cpp",
+ "atomic": "cpp",
+ "*.tcc": "cpp",
+ "cctype": "cpp",
+ "chrono": "cpp",
+ "clocale": "cpp",
+ "cmath": "cpp",
+ "complex": "cpp",
+ "condition_variable": "cpp",
+ "cstddef": "cpp",
+ "cstdint": "cpp",
+ "cstdio": "cpp",
+ "cstdlib": "cpp",
+ "cstring": "cpp",
+ "ctime": "cpp",
+ "cwchar": "cpp",
+ "cwctype": "cpp",
+ "deque": "cpp",
+ "unordered_map": "cpp",
+ "unordered_set": "cpp",
+ "vector": "cpp",
+ "exception": "cpp",
+ "fstream": "cpp",
+ "functional": "cpp",
+ "future": "cpp",
+ "initializer_list": "cpp",
+ "iomanip": "cpp",
+ "iosfwd": "cpp",
+ "iostream": "cpp",
+ "istream": "cpp",
+ "limits": "cpp",
+ "memory": "cpp",
+ "mutex": "cpp",
+ "new": "cpp",
+ "numeric": "cpp",
+ "optional": "cpp",
+ "ostream": "cpp",
+ "ratio": "cpp",
+ "sstream": "cpp",
+ "stdexcept": "cpp",
+ "streambuf": "cpp",
+ "string_view": "cpp",
+ "system_error": "cpp",
+ "thread": "cpp",
+ "type_traits": "cpp",
+ "tuple": "cpp",
+ "typeinfo": "cpp",
+ "utility": "cpp",
+ "variant": "cpp",
+ "cstdarg": "cpp",
+ "charconv": "cpp",
+ "algorithm": "cpp",
+ "cinttypes": "cpp",
+ "iterator": "cpp",
+ "map": "cpp",
+ "memory_resource": "cpp",
+ "random": "cpp",
+ "string": "cpp",
+ "bit": "cpp",
+ "netfwd": "cpp"
+ }
+}