Files
LoraSA/.vscode/settings.json
2025-03-13 11:50:31 +01:00

21 lines
542 B
JSON

{
// Suggest where to make a new line by adding two vertical lines
// Vertical lines, 79 works well for code reviews and diffs
"editor.rulers": [
79,
90
],
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {
"editorRuler.foreground": "#ff4081"
},
"files.insertFinalNewline": true,
"files.autoSave": "onFocusChange",
"files.associations": {
"cstdint": "cpp",
"system_error": "cpp",
"*.tpp": "cpp"
},
}