Skip to content

Instantly share code, notes, and snippets.

@elcritch
Created May 16, 2023 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elcritch/99a5908382ae8f8c2501a5b79bf3b494 to your computer and use it in GitHub Desktop.
Save elcritch/99a5908382ae8f8c2501a5b79bf3b494 to your computer and use it in GitHub Desktop.
vscode devcontainer for esp-idf and nesper
{
"name": "esp-idf",
"image": "ghcr.io/embeddednim/esp-idf:4.4-2023-02-12",
"remoteUser": "root",
"postCreateCommand": "git config --global --add safe.directory '*' && sh -c \"$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh) --skip-chsh\" ",
// "postStartCommand": "",
"customizations": {
"vscode": {
"extensions": [
"nimsaem.nimvscode",
"twxs.cmake",
"ms-vscode.cpptools"
]
},
"settings": {
"terminal.integrated.profiles.linux": {
"zsh login": {
"path": "/bin/zsh",
"args": ["-l"],
"icon": "terminal-bash"
}
},
"terminal.integrated.defaultProfile.linux": "zsh login"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment