mirror of
https://github.com/depp/syncfiles.git
synced 2024-11-22 03:30:57 +00:00
3f6acc9f42
While C99 is not supported by old Mac OS compilers, line comments are supported. Keeping strictly to old C90 style code is annoying without benefit.
20 lines
350 B
JSON
20 lines
350 B
JSON
{
|
|
"editor.rulers": [80],
|
|
"editor.detectIndentation": false,
|
|
"editor.tabSize": 4,
|
|
"editor.insertSpaces": false,
|
|
"files.associations": {
|
|
"*.h": "c"
|
|
},
|
|
"[starlark]": {
|
|
"editor.insertSpaces": true
|
|
},
|
|
"[json]": {
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2
|
|
},
|
|
"[python]": {
|
|
"editor.insertSpaces": true
|
|
}
|
|
}
|