Skip to content
Snippets Groups Projects
devcontainer.json 428 B
Newer Older
// .devcontainer/devcontainer.json
{
Luke Naylor's avatar
Luke Naylor committed
    "name": "LaTeX&SageTex&Chromacode Devcontainer",
    "dockerFile": "./Dockerfile",
    "customizations": {
        "vscode": {
            "settings": {
                "terminal.integrated.shell.linux": "/bin/bash"
            },
            "extensions": [
				"james-yu.latex-workshop",
				"microsoft.jupyter",
				"ms-toolsai.jupyter",
				"ms-python.python"
			]
        }
    }
}