Created
May 16, 2023 19:38
-
-
Save elcritch/99a5908382ae8f8c2501a5b79bf3b494 to your computer and use it in GitHub Desktop.
vscode devcontainer for esp-idf and nesper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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