transm/.vscode/settings.json

47 lines
1.4 KiB
JSON
Raw Normal View History

2024-12-11 08:44:14 +08:00
{
"files.autoSave": "onFocusChange",
"editor.fontSize": 14,
2025-01-08 20:47:12 +08:00
"cmake.configureOnOpen": true,
2024-12-11 08:44:14 +08:00
"cmake.debugConfig": {
"console": "integratedTerminal",
"setupCommands": [
{
"description": "-gdb-set charset utf-8",
"text": "-gdb-set charset UTF-8"
},
{
"description": "Enable gdb pretty-printing",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"args": [
2025-04-15 08:48:41 +08:00
"9999"
]
2024-12-11 08:44:14 +08:00
},
2025-04-15 08:48:41 +08:00
"cmake.configureSettings": {
//"CMAKE_TOOLCHAIN_FILE": "${env:VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
2024-12-11 08:44:14 +08:00
},
"cmake.options.statusBarVisibility": "visible",
"cmake.generator": "Ninja",
2025-04-15 08:48:41 +08:00
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
2024-12-11 08:44:14 +08:00
"editor.inlayHints.enabled": "off",
"editor.unicodeHighlight.allowedLocales": {
"ja": true,
"zh-hant": true,
"zh-hans": true
2024-12-11 10:22:14 +08:00
},
2025-04-15 08:48:41 +08:00
"C_Cpp.intelliSenseEngine": "disabled",
"clangd.arguments": [
"--header-insertion=never",
"--all-scopes-completion",
"--completion-style=detailed",
"-j=4",
"--clang-tidy",
"--pch-storage=memory",
"--compile-commands-dir=build",
"--background-index",
"--ranking-model=heuristics",
"--function-arg-placeholders=false"
],
2024-12-11 08:44:14 +08:00
}