{"id":43073373,"url":"https://github.com/martinemde/dotfiles","last_synced_at":"2026-01-31T13:57:32.084Z","repository":{"id":313590244,"uuid":"1051902973","full_name":"martinemde/dotfiles","owner":"martinemde","description":"✨ AI-first dotfiles with chezmoi","archived":false,"fork":false,"pushed_at":"2026-01-30T04:18:54.000Z","size":780,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-30T20:35:47.698Z","etag":null,"topics":["chezmoi","claude-code","dotfiles","jj"],"latest_commit_sha":null,"homepage":"https://github.com/martinemde/dotfiles","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"ivy/dotfiles","license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/martinemde.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-09-07T00:57:17.000Z","updated_at":"2026-01-30T04:18:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/martinemde/dotfiles","commit_stats":null,"previous_names":["martinemde/dotfiles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/martinemde/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martinemde%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martinemde%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martinemde%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martinemde%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/martinemde","download_url":"https://codeload.github.com/martinemde/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martinemde%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28944789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T13:02:32.153Z","status":"ssl_error","status_checked_at":"2026-01-31T13:00:07.528Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chezmoi","claude-code","dotfiles","jj"],"created_at":"2026-01-31T13:57:31.990Z","updated_at":"2026-01-31T13:57:32.077Z","avatar_url":"https://github.com/martinemde.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dotfiles Redux\n\nThis repository contains my personal dotfiles for setting up a productive developer environment on macOS, Linux, and containerized setups using [Devcontainers](https://containers.dev/). The goal is to provide a stable and maintainable environment that prioritizes pragmatic defaults over heavy customization.\n\n## Philosophy\n\n- **Pragmatic Minimalism**: I prefer focused, single-purpose tools over complex frameworks. Instead of importing bulky plugins or features I don't use, I choose excellent, well-maintained tools that do one thing well with minimal configuration. Examples include znap for fast plugin loading, starship for cross-shell prompts, and mise for reproducible tool management.\n- **Portability**: These dotfiles should work across macOS and Linux machines, as well as within containers. They are designed to be reliable whether installed system-wide or through a Devcontainer configuration.\n- **Consistency**: The configuration aims to make pairing with others easy by sticking to intuitive shortcuts and well-known conventions. While these dotfiles improve my workflow, I can still work effectively without them if necessary.\n- **Performance with Reliability**: Fast startup matters—this setup achieves 50-80% faster shell startup through caching and lazy-loading—but not at the cost of stability. I avoid risky optimizations and instead gain speed through minimalism and focused tooling. Runtime performance should not be significantly degraded by these configurations.\n\n## Goals\n\n1. **Stable setup** that rarely fails and is simple to maintain.\n2. **Easy installation** on a fresh Mac or Linux system, with support for Devcontainers for containerized development.\n3. **Shared tools** that follow common standards, enabling me to collaborate with others without friction.\n4. **Documentation** that clearly explains the rationale behind each configuration choice.\n\n## Installation\n\n### Quick Start\n\n```bash\nchezmoi init --apply $GITHUB_USERNAME\n```\n\n### Advanced Usage\n\nThe installer supports various options and can pass arguments directly to `chezmoi init`:\n\n```bash\n# Force reinstall tools (if already installed)\nREINSTALL_TOOLS=true ./install.sh\n\n# Pass arguments to chezmoi init\n./install.sh -- --force          # Force chezmoi to overwrite existing files\n./install.sh -- --one-shot       # Use chezmoi's one-shot mode\n\n# Combine options\nREINSTALL_TOOLS=true ./install.sh -- --force\n```\n\n### Environment Variables\n\nYou can customize the installation behavior with these environment variables:\n\n- `REINSTALL_TOOLS=true` - Force reinstallation of tools even if already present\n- `BIN_DIR=/custom/path` - Install binaries to a custom directory (default: `~/.local/bin`)\n- `DEBUG=1` - Enable debug output during installation\n- `VERIFY_SIGNATURES=false` - Disable signature verification (not recommended)\n\n#### Non-Interactive Installation\n\nFor CI/CD or automated environments where no TTY is available, set these variables to bypass interactive prompts:\n\n- `GIT_USER_NAME=\"Your Name\"` - Git user name for commits\n- `GIT_USER_EMAIL=\"your.email@example.com\"` - Git user email for commits\n\nExample for CI environments:\n\n```bash\nGIT_USER_NAME=\"CI User\" GIT_USER_EMAIL=\"ci@example.com\" ./install.sh\n```\n\nFor a complete list of options, run `./install.sh --help`.\n\n## License\n\nThis project is open source under the [ISC License](LICENSE.md), credited to Ivy Evans, Martin Emde.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartinemde%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmartinemde%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartinemde%2Fdotfiles/lists"}