tobiaschc · GitHub

Tests

This repo contains my custom DevContainer Features.

You can learn more about Features at https://containers.dev/implementors/features/.

Features

Feature Description
starship Install and configure Starship prompt in your development container.

Usage

To reference a Feature from this repository, add it to your devcontainer.json. Each Feature has a README.md with details and options.

Example using the starship feature:

"name": "my-project-devcontainer",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
  "ghcr.io/tobiaschc/devcontainer-features/starship:1": {"configFile": "tobias"},
  "customizations": {
        "vscode": {
            "settings": {
                "terminal.integrated.fontFamily": "MesloLGS Nerd Font Mono",
            }
        }
    }
}

Read the original on github.com ↗