From c8559bc1110782ed0f4fadac63b052eeaa2d05e2 Mon Sep 17 00:00:00 2001 From: belliash Date: Thu, 12 Jul 2018 18:10:19 +0200 Subject: [PATCH] VS Code configuration for P# project --- .vscode/settings.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..5746a5b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,40 @@ +{ + "files.autoSave": "afterDelay", + "editor.renderWhitespace": "none", + "editor.multiCursorModifier": "alt", + "editor.insertSpaces": false, + "editor.wordWrap": "off", + "editor.accessibilitySupport": "auto", + "editor.cursorBlinking": "smooth", + "editor.cursorStyle": "line", + "editor.detectIndentation": false, + "editor.foldingStrategy": "auto", + "scm.alwaysShowProviders": true, + "scm.diffDecorations": "all", + "workbench.colorTheme": "Default Dark+", + "workbench.startupEditor": "welcomePage", + "files.defaultLanguage": "C", + "files.eol": "\n", + "files.maxMemoryForLargeFilesMB": 8192, + "explorer.autoReveal": true, + "update.channel": "default", + "debug.allowBreakpointsEverywhere": true, + "debug.inlineValues": true, + "html.format.indentInnerHtml": true, + "html.trace.server": "verbose", + "json.trace.server": "verbose", + "telemetry.enableCrashReporter": false, + "telemetry.enableTelemetry": false, + "git.enableCommitSigning": true, + "C_Cpp.clang_format_fallbackStyle": "Visual Studio", + "C_Cpp.clang_format_style": "Visual Studio", + "C_Cpp.errorSquiggles": "Enabled", + "C_Cpp.formatting": "Default", + "C_Cpp.loggingLevel": "Debug", + "cSpell.allowCompoundWords": true, + "cSpell.language": "en,en-GB,en-US", + "cSpell.userWords": [ + "belliash", + "codingworkshop", + ] +} \ No newline at end of file