https://github.com/roock/dotfiles-for-devcontainers
My dotfiles for use inside a devcontainer
https://github.com/roock/dotfiles-for-devcontainers
Last synced: 14 days ago
JSON representation
My dotfiles for use inside a devcontainer
- Host: GitHub
- URL: https://github.com/roock/dotfiles-for-devcontainers
- Owner: roock
- License: mit
- Created: 2024-08-11T09:45:49.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-20T13:26:42.000Z (over 1 year ago)
- Last Synced: 2024-12-20T14:36:48.006Z (over 1 year ago)
- Language: Shell
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotfiles-for-devcontainers
My dotfiles for use inside a devcontainer
## Requirements
- zsh
- ohmyzsh
You can satisfy these requiments by adding the followint to your vscode user settings:
```json
{
"dev.containers.defaultFeatures": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": true,
"configureZshAsDefaultShell": true,
"installOhMyZsh": true,
"installOhMyZshConfig": true,
}
}
}
````
## Usage
```json
{
"dotfiles.repository": "roock/dotfiles-for-devcontainers",
"dotfiles.targetPath": "~/dotfiles",
"dotfiles.installCommand": "install.sh"
}
```
## References
- https://github.com/JorgenKrieger/dotfiles-for-devcontainers
- https://dotfiles.github.io/