devcontainer.json 542 B

1234567891011121314151617181920
  1. {
  2. "image": "mcr.microsoft.com/devcontainers/base:noble",
  3. "features": {
  4. "ghcr.io/devcontainers/features/common-utils": {
  5. "installZsh": true,
  6. "configureZshAsDefaultShell": true,
  7. "username": "vscode",
  8. "userUid": 1000,
  9. "userGid": 1000
  10. }
  11. },
  12. "postCreateCommand": "dir=/workspaces/ohmyzsh; rm -rf $HOME/.oh-my-zsh && ln -s $dir $HOME/.oh-my-zsh && cp $dir/templates/minimal.zshrc $HOME/.zshrc && chgrp -R 1000 $dir && chmod g-w,o-w $dir",
  13. "customizations": {
  14. "codespaces": {
  15. "openFiles": [
  16. "README.md"
  17. ]
  18. }
  19. }
  20. }