mirror of
https://github.com/Genaker/LoraSA.git
synced 2026-03-28 17:42:59 +01:00
21 lines
542 B
JSON
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"
|
|
},
|
|
}
|