63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"editor.insertSpaces": true,
|
|
// Ignores the warning when Git is missing
|
|
"git.ignoreMissingGitWarning": true,
|
|
// Disable crash reports being sent to Microsoft.
|
|
"telemetry.enableCrashReporter": false,
|
|
// Disable usage data and errors being sent to Microsoft.
|
|
"telemetry.enableTelemetry": false,
|
|
"editor.formatOnSave": true,
|
|
"cmake.configureOnOpen": false,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.autopep8",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"autopep8.args": ["--max-line-length=200"],
|
|
"editor.detectIndentation": false,
|
|
"git.confirmSync": false,
|
|
"editor.rulers": [
|
|
{
|
|
"column": 120
|
|
}
|
|
],
|
|
"git.autofetch": true,
|
|
"files.autoSave": "onFocusChange",
|
|
"cSpell.language": "en-GB",
|
|
"C_Cpp.formatting": "disabled",
|
|
"cmake.showOptionsMovedNotification": false,
|
|
"diffEditor.renderSideBySide": false,
|
|
"terminal.integrated.commandsToSkipShell": ["matlab.interrupt"],
|
|
"[matlab]": {
|
|
"editor.defaultFormatter": "AffenWiesel.matlab-formatter"
|
|
},
|
|
"workbench.editorAssociations": {
|
|
"*.pdf": "latex-workshop-pdf-hook"
|
|
},
|
|
"notebook.output.textLineLimit": 50,
|
|
"prettier.printWidth": 130,
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"prettier.useTabs": true,
|
|
"editor.tabSize": 4,
|
|
"[json]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"[cpp]": {
|
|
"editor.defaultFormatter": "ms-vscode.cpptools"
|
|
},
|
|
"C_Cpp.default.cppStandard": "gnu++23",
|
|
"C_Cpp.default.cStandard": "gnu23",
|
|
"diffEditor.hideUnchangedRegions.enabled": true,
|
|
"python.createEnvironment.trigger": "off",
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"importSorter.generalConfiguration.sortOnBeforeSave": true,
|
|
"cSpell.words": [
|
|
"vars"
|
|
]
|
|
}
|
|
|
|
|