syncfiles/.vscode/settings.json

20 lines
350 B
JSON
Raw Normal View History

2022-03-17 12:46:04 -04:00
{
"editor.rulers": [80],
"editor.detectIndentation": false,
2022-03-23 01:25:59 -04:00
"editor.tabSize": 4,
2022-03-24 22:49:49 -04:00
"editor.insertSpaces": false,
"files.associations": {
"*.h": "c"
},
2022-03-24 22:49:49 -04:00
"[starlark]": {
"editor.insertSpaces": true
},
"[json]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"[python]": {
"editor.insertSpaces": true
2022-03-24 22:49:49 -04:00
}
2022-03-17 12:46:04 -04:00
}