diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7a20004..9d0b416 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -34,19 +34,18 @@ // Configure properties specific to VS Code. "vscode": { // Set *default* container specific settings.json values on container create. - "settings": {}, + "settings": { + "workbench": { + "editorAssociations": { + "*.md": "vscode.markdown.preview.editor" + }, + "startupEditor": "readme" + } + }, "extensions": [ "ms-python.python", "ms-toolsai.jupyter" ] - }, - - // Configure properties specific to Codespaces. - "codespaces": { - "openFiles": [ - "README.md", - "README.rst" - ] } } }