boxes/.vscode/settings.json

56 lines
1.4 KiB
JSON
Raw Normal View History

2021-03-03 22:25:06 +01:00
{
2022-10-22 13:29:05 +02:00
"C_Cpp.loggingLevel": "Debug",
2021-03-03 22:25:06 +01:00
"editor.autoClosingBrackets": "never",
"editor.dragAndDrop": false,
"editor.formatOnSave": false,
2023-03-24 22:03:20 +01:00
"editor.formatOnType": false,
2021-03-03 22:25:06 +01:00
"editor.renderWhitespace": "selection",
"editor.rulers": [120],
"editor.wordWrapColumn": 120,
2022-10-22 13:29:05 +02:00
2021-03-03 22:25:06 +01:00
"files.associations": {
2022-09-18 14:33:44 +02:00
"*.1.in": "troff",
"*.h": "c"
2021-03-03 22:25:06 +01:00
},
"files.encoding": "utf8",
2022-10-22 13:29:05 +02:00
"files.exclude": {
"**/.git": true,
"**/.idea": true,
"**/_site": true,
"**/_support": true,
"**/cmake-build-debug": true,
"**/coverage": true,
"**/out": true,
"**/vendor": true
},
2021-03-03 22:25:06 +01:00
"todo-tree.highlights.defaultHighlight": {
2022-09-18 14:33:44 +02:00
"foreground": "#DD0000",
2021-03-03 22:25:06 +01:00
"rulerLane": "full"
},
"todo-tree.filtering.excludeGlobs": [
"**/out/**",
"**/build/**",
"**/.vscode/**",
"**/.github/**",
"**/_site/**",
"**/_support/**",
2022-10-22 13:29:05 +02:00
"**/vendor/**"
2021-03-03 22:25:06 +01:00
],
"todo-tree.general.statusBar": "total",
"todo-tree.general.tags": ["TODO", "FIXME", "CHECK"],
"todo-tree.regex.regex": "(//|#|<!--|\"|/\\*|^\\s*\\*).*?($TAGS)",
2021-03-03 22:25:06 +01:00
"todo-tree.tree.expanded": true,
"todo-tree.tree.showCountsInTree": true,
"[lex]": {
"files.encoding": "iso885915"
},
"[makefile]": {
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"editor.renderWhitespace": "boundary"
}
}