Skip to content

Commit

Permalink
Update vscode config.
Browse files Browse the repository at this point in the history
  • Loading branch information
pippijn committed Jan 29, 2024
1 parent b711594 commit 5b97aa8
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .local/share/vscode/config/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compileCommands": "${workspaceFolder}/compile_commands.json"
}
],
"version": 4
}
95 changes: 94 additions & 1 deletion .local/share/vscode/config/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,99 @@
"cmake.configureOnOpen": false,
"files.associations": {
"tox_network_impl.h": "c",
"inet.h": "c"
"inet.h": "c",
"crypto_core.h": "c",
"__hash_table": "cpp",
"__split_buffer": "cpp",
"array": "cpp",
"bitset": "cpp",
"initializer_list": "cpp",
"string": "cpp",
"string_view": "cpp",
"unordered_map": "cpp",
"vector": "cpp",
"span": "cpp",
"__bit_reference": "cpp",
"__config": "cpp",
"__debug": "cpp",
"__errc": "cpp",
"__locale": "cpp",
"__mutex_base": "cpp",
"__node_handle": "cpp",
"__threading_support": "cpp",
"__verbose_abort": "cpp",
"atomic": "cpp",
"cctype": "cpp",
"charconv": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"exception": "cpp",
"iomanip": "cpp",
"ios": "cpp",
"iosfwd": "cpp",
"istream": "cpp",
"limits": "cpp",
"locale": "cpp",
"mutex": "cpp",
"new": "cpp",
"optional": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"typeinfo": "cpp",
"variant": "cpp",
"algorithm": "cpp",
"any": "cpp",
"bit": "cpp",
"*.tcc": "cpp",
"chrono": "cpp",
"compare": "cpp",
"concepts": "cpp",
"condition_variable": "cpp",
"csignal": "cpp",
"deque": "cpp",
"forward_list": "cpp",
"list": "cpp",
"map": "cpp",
"set": "cpp",
"unordered_set": "cpp",
"functional": "cpp",
"iterator": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"random": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"fstream": "cpp",
"iostream": "cpp",
"numbers": "cpp",
"semaphore": "cpp",
"stop_token": "cpp",
"thread": "cpp",
"cinttypes": "cpp",
"valarray": "cpp",
"cfenv": "cpp",
"regex": "cpp",
"future": "cpp",
"scoped_allocator": "cpp",
"typeindex": "cpp",
"*.inc": "cpp",
"complex": "cpp",
"stacktrace": "cpp",
"auto_test_support.h": "c"
}
}

0 comments on commit 5b97aa8

Please sign in to comment.