Files
Seele/.vscode/settings.json
T

116 lines
3.0 KiB
JSON
Raw Normal View History

2020-03-24 21:05:32 +01:00
{
2024-01-20 13:22:47 +01:00
"cmake.cmakePath": "cmake",
"cmake.configureArgs": [
"-Wno-dev"
2020-10-03 11:00:10 +02:00
],
2021-07-11 22:23:01 +02:00
"files.watcherExclude": {
2022-04-13 13:01:35 +02:00
"**/target": true,
"bin/**": true,
"external/**": true
2021-09-23 10:10:39 +02:00
},
2021-10-19 23:04:38 +02:00
"git.ignoreSubmodules": true,
2023-01-29 18:58:59 +01:00
"cmake.parallelJobs": 0,
"C_Cpp.files.exclude": {
"**/.vs": true,
"**/.vscode": true,
"**/bin": true,
"**/external": true,
"**/res": true,
},
2024-04-10 09:58:39 +02:00
"editor.detectIndentation": false,
2024-04-13 23:51:38 +02:00
"lldb.displayFormat": "auto",
"lldb.showDisassembly": "auto",
"lldb.dereferencePointers": true,
2024-05-16 19:47:35 +02:00
"lldb.consoleMode": "commands",
2025-06-20 13:06:57 +02:00
"cmake.generator": "Xcode",
2024-10-18 19:01:04 +02:00
"editor.tabSize": 4,
"slang.additionalSearchPaths": [
"res/shaders/",
"res/shaders/lib"
],
2025-05-18 08:49:22 +02:00
"slang.searchInAllWorkspaceDirectories": false,
"files.associations": {
2025-05-23 05:07:03 +02:00
"type_traits": "cpp",
"any": "cpp",
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"charconv": "cpp",
"chrono": "cpp",
"cinttypes": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"compare": "cpp",
"concepts": "cpp",
"condition_variable": "cpp",
"csignal": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"forward_list": "cpp",
"list": "cpp",
"map": "cpp",
"set": "cpp",
"string": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"vector": "cpp",
"exception": "cpp",
"algorithm": "cpp",
"functional": "cpp",
"iterator": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"random": "cpp",
"ratio": "cpp",
"string_view": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"utility": "cpp",
"format": "cpp",
"fstream": "cpp",
"future": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"mutex": "cpp",
"new": "cpp",
"numbers": "cpp",
"ostream": "cpp",
"queue": "cpp",
"ranges": "cpp",
"semaphore": "cpp",
"shared_mutex": "cpp",
"span": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"stdfloat": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"text_encoding": "cpp",
"thread": "cpp",
"typeinfo": "cpp",
"valarray": "cpp",
"variant": "cpp"
},
"github.copilot.advanced": {
"debug.overrideProxyUrl": "http://localhost:11437"
},
"http.proxy": "http://localhost:11435",
"http.proxyStrictSSL": false
2020-03-24 21:05:32 +01:00
}