adds VSCode configuration

This commit is contained in:
2025-07-20 12:10:04 +02:00
parent a45db1d245
commit 20660d52ab
4 changed files with 35 additions and 21 deletions

14
.vscode/settings.json vendored
View File

@@ -5,13 +5,15 @@
"debug.allowBreakpointsEverywhere": true,
"editor.rulers": [
{
"column": 120,
"column": 140,
"comment": "clang-format"
}
],
"cmake.configureArgs": [
"--preset",
"Debug",
"-DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
]
"clangd.arguments": [
"--pretty",
"--background-index",
"--compile-commands-dir=${workspaceFolder}/build"
],
"cmake.copyCompileCommands": "${workspaceFolder}/build/compile_commands.json"
}