25 lines
668 B
JSON
25 lines
668 B
JSON
{
|
|
"debug.allowBreakpointsEverywhere": true,
|
|
"editor.rulers": [
|
|
{
|
|
"column": 140,
|
|
"comment": "clang-format"
|
|
}
|
|
],
|
|
"editor.formatOnSave": false,
|
|
"clangd.arguments": [
|
|
"--pretty",
|
|
"--background-index",
|
|
"--compile-commands-dir=${workspaceFolder}/build"
|
|
],
|
|
"cmake.copyCompileCommands": "${workspaceFolder}/build/compile_commands.json",
|
|
"cmake.options.statusBarVisibility": "hidden",
|
|
"cmake.options.advanced": {
|
|
"configure": {
|
|
"projectStatusVisibility": "visible"
|
|
},
|
|
"build": {
|
|
"statusBarVisibility": "visible"
|
|
}
|
|
}
|
|
} |