syncfiles/.vscode/settings.json

20 lines
350 B
JSON
Raw Normal View History

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