-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
60 lines (60 loc) · 2.57 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "TensorFlow GPU Dev Container",
"build": {
"dockerfile": "Dockerfile",
"args": {
"USER_NAME": "your_username", // Change this to your computer username
"USER_UID": "1000"
}
},
"runArgs": ["--gpus", "all"], // Enable GPU support in the container
"customizations": {
"vscode": { // Edit or remove the extensions and settings you want to install in the container
"extensions": [
"ms-python.black-formatter", // mantain the black formatter in the first position to avoid conflicts with editor.defaultFormatter
"ms-python.python",
"donjayamanne.python-extension-pack",
"ms-python.isort",
"ms-python.pylint",
"ms-toolsai.jupyter",
"github.copilot",
"github.copilot-chat",
"ms-azuretools.vscode-docker",
"tomoki1207.pdf",
"higurashi-kagome.dir-tree",
"yzhang.markdown-all-in-one",
"bierner.markdown-preview-github-styles",
"davidanson.vscode-markdownlint",
"mechatroner.rainbow-csv",
"gruntfuggly.todo-tree",
"equinusocio.vsc-material-theme-icons"
],
"settings": {
"python.pythonPath": "/usr/local/bin/python",
"python.terminal.activateEnvironment": true,
"security.workspace.trust.untrustedFiles": "open",
"jupyter.askForKernelRestart": false,
"redhat.telemetry.enabled": true,
"github.copilot.enable": {
"plaintext": "true",
"markdown": "true"
},
"workbench.productIconTheme": "Default",
"workbench.iconTheme": "eq-material-theme-icons-palenight",
"notebook.lineNumbers": "on",
"zenMode.hideLineNumbers": false,
"remote.autoForwardPortsSource": "hybrid",
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"notebook.formatOnCellExecution": true,
"notebook.formatOnSave.enabled": true,
"files.autoSave": "onWindowChange",
"terminal.integrated.fontFamily": "monospace"
}
}
}
}