36 lines
781 B
JSON
36 lines
781 B
JSON
{
|
|
"name": "ESP-IDF Dev Environment",
|
|
"build": {
|
|
"dockerfile": "DockerFile"
|
|
},
|
|
"remoteUser": "ubuntu",
|
|
"features": {
|
|
"ghcr.io/duduribeiro/devcontainer-features/neovim:1": {
|
|
"version": "stable"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"idf.espIdfPath": "/opt/esp/idf",
|
|
"idf.toolsPath": "/opt/esp",
|
|
"idf.gitPath": "/usr/bin/git",
|
|
"idf.pythonBinPath": "/usr/bin/python3"
|
|
},
|
|
"extensions": [
|
|
"ms-vscode.cpptools",
|
|
"espressif.esp-idf-extension",
|
|
"ms-vscode.cpptools-extension-pack"
|
|
]
|
|
}
|
|
},
|
|
"mounts": [
|
|
"source=${env:HOME}/.config/nvim,target=/home/ubuntu/.config/nvim,type=bind"
|
|
],
|
|
"runArgs": [
|
|
"--privileged",
|
|
"-v",
|
|
"/dev:/dev"
|
|
]
|
|
}
|