├── .editorconfig ├── .github ├── renovate.json └── workflows │ ├── fast-forward-pr.yaml │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .gitmojirc.json ├── .vscode └── extensions.json ├── Brewfile ├── LICENSE ├── package.json ├── pnpm-lock.yaml ├── src ├── fish │ ├── NOTES.md │ ├── README.md │ ├── devcontainer-feature.json │ └── install.sh └── homebrew │ ├── README.md │ ├── devcontainer-feature.json │ └── install.sh └── test ├── fish ├── alpine.sh ├── scenarios.json └── test.sh └── homebrew └── test.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/fast-forward-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/.github/workflows/fast-forward-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmojirc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/.gitmojirc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/Brewfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/fish/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/src/fish/NOTES.md -------------------------------------------------------------------------------- /src/fish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/src/fish/README.md -------------------------------------------------------------------------------- /src/fish/devcontainer-feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/src/fish/devcontainer-feature.json -------------------------------------------------------------------------------- /src/fish/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/src/fish/install.sh -------------------------------------------------------------------------------- /src/homebrew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/src/homebrew/README.md -------------------------------------------------------------------------------- /src/homebrew/devcontainer-feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/src/homebrew/devcontainer-feature.json -------------------------------------------------------------------------------- /src/homebrew/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/src/homebrew/install.sh -------------------------------------------------------------------------------- /test/fish/alpine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/test/fish/alpine.sh -------------------------------------------------------------------------------- /test/fish/scenarios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/test/fish/scenarios.json -------------------------------------------------------------------------------- /test/fish/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/test/fish/test.sh -------------------------------------------------------------------------------- /test/homebrew/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meaningful-ooo/devcontainer-features/HEAD/test/homebrew/test.sh --------------------------------------------------------------------------------