a1e0607a22
Microsoft's C/C++ extension performs poorly on some systems, so this gives the option to use any other extension that supports formatting with clang-format.
23 lines
575 B
JSON
23 lines
575 B
JSON
{
|
|
"files.associations": {
|
|
"*.overlay": "dts",
|
|
"*.keymap": "dts"
|
|
},
|
|
"python.formatting.provider": "black",
|
|
"[c]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[javascript][javascriptreact][typescript][typescriptreact]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[python]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "ms-python.python"
|
|
},
|
|
"[css][json][jsonc][html][markdown][yaml]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
}
|
|
}
|