diff options
Diffstat (limited to '.devcontainer.json')
-rw-r--r-- | .devcontainer.json | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/.devcontainer.json b/.devcontainer.json index 36d69c2..0e5b7cd 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -4,6 +4,7 @@ "extensions": [ "/opt/cs50/extensions/explain50-1.0.0.vsix", "/opt/cs50/extensions/cs50-0.0.1.vsix", + "/opt/cs50/extensions/design50-1.0.0.vsix", "/opt/cs50/extensions/ddb50-2.0.0.vsix", "/opt/cs50/extensions/phpliteadmin-0.0.1.vsix", "/opt/cs50/extensions/style50-0.0.1.vsix", @@ -35,6 +36,10 @@ "vsls-contrib.gitdoc" ], "settings": { + "[python]": { + "editor.defaultFormatter": "ms-python.autopep8" + }, + "breadcrumbs.enabled": false, "C_Cpp.autocomplete": "disabled", "C_Cpp.clang_format_fallbackStyle": "{ AllowShortFunctionsOnASingleLine: Empty, BraceWrapping: { AfterCaseLabel: true, AfterControlStatement: true, AfterFunction: true, AfterStruct: true, BeforeElse: true, BeforeWhile: true }, BreakBeforeBraces: Custom, ColumnLimit: 100, IndentCaseLabels: true, IndentWidth: 4, SpaceAfterCStyleCast: true, TabWidth: 4 }", "C_Cpp.codeFolding": "disabled", @@ -44,11 +49,6 @@ "C_Cpp.enhancedColorization": "enabled", "C_Cpp.errorSquiggles": "disabled", "C_Cpp.formatting": "clangFormat", - "Prettier-SQL.keywordCase": "upper", - "[python]": { - "editor.defaultFormatter": "ms-python.autopep8" - }, - "breadcrumbs.enabled": false, "cs50.watchPorts": [ 5000, 8080, @@ -65,10 +65,11 @@ "editor.formatOnSave": false, "editor.guides.indentation": false, "editor.hover.enabled": false, - "editor.lightbulb.enabled": false, + "editor.lightbulb.enabled": "off", "editor.matchBrackets": "never", "editor.minimap.enabled": false, - "editor.occurrencesHighlight": false, + "editor.mouseWheelZoom": true, + "editor.occurrencesHighlight": "off", "editor.parameterHints.enabled": false, "editor.quickSuggestions": { "comments": "off", @@ -90,6 +91,7 @@ } }, "editor.suggestOnTriggerCharacters": false, + "explorer.autoOpenDroppedFile": false, "explorer.compactFolders": false, "extension-uninstaller.uninstall": [ "Codeium.codeium", @@ -127,9 +129,9 @@ "html.suggest.html5": false, "java.configuration.runtimes": [ { - "default": true, "name": "JavaSE-22", - "path": "/opt/jdk" + "path": "/opt/jdk", + "default": true } ], "java.debug.settings.enableRunDebugCodeLens": false, @@ -138,6 +140,7 @@ "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false, "javascript.suggest.enabled": false, "javascript.validate.enable": false, + "Prettier-SQL.keywordCase": "upper", "problems.decorations.enabled": false, "python.terminal.executeInFileDir": true, "remote.autoForwardPorts": true, @@ -218,7 +221,7 @@ 8082, 8787 ], - "image": "ghcr.io/cs50/codespace:8c72efb413904214f46adf16f32ec9ceb75d8d53", + "image": "ghcr.io/cs50/codespace:f998f54b149bdb70f140db243ec8d021778361d9", "mounts": [ { "source": "/var/run/docker.sock", |