Files
LoraSA/.vscode/settings.json
Oleksii Mandrychenko 32737a77b0 Add formatter
2024-08-08 22:21:08 -07:00

16 lines
427 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",
}