{"id":16583040,"url":"https://github.com/mazgi/dotfiles","last_synced_at":"2026-03-05T09:03:29.420Z","repository":{"id":8558258,"uuid":"10183327","full_name":"mazgi/dotfiles","owner":"mazgi","description":"Provisioning my environment on macOS and Linux.","archived":false,"fork":false,"pushed_at":"2020-11-28T21:00:29.000Z","size":2481,"stargazers_count":2,"open_issues_count":6,"forks_count":11,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-26T14:50:05.937Z","etag":null,"topics":["dotfiles","macos","provisioning","tmux-conf","vimrc","zsh","zshrc"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mazgi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["mazgi"],"patreon":"mazgi"}},"created_at":"2013-05-20T22:32:11.000Z","updated_at":"2020-11-03T03:13:00.000Z","dependencies_parsed_at":"2022-08-31T07:11:40.143Z","dependency_job_id":null,"html_url":"https://github.com/mazgi/dotfiles","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mazgi/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mazgi%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mazgi%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mazgi%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mazgi%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mazgi","download_url":"https://codeload.github.com/mazgi/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mazgi%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30117489,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T08:19:04.902Z","status":"ssl_error","status_checked_at":"2026-03-05T08:17:37.148Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["dotfiles","macos","provisioning","tmux-conf","vimrc","zsh","zshrc"],"created_at":"2024-10-11T22:34:48.431Z","updated_at":"2026-03-05T09:03:28.911Z","avatar_url":"https://github.com/mazgi.png","language":"Shell","funding_links":["https://github.com/sponsors/mazgi","https://patreon.com/mazgi"],"categories":[],"sub_categories":[],"readme":"## About\n\nThis repository is the scripts and configuration files for the provision of my environment on macOS and Linux.\n\nThat includes tools and settings as below.\n\n- `.zshrc`, and zsh plugins via [zinit](https://github.com/zdharma/zinit)\n- `.tmux.conf`, and tmux plugins via [tpm](https://github.com/tmux-plugins/tpm)\n- `.vimrc`, and vim plugins via [Vundle.vim](https://github.com/VundleVim/Vundle.vim)\n- (for macOS) `Brewfile` for [Homebrew](https://github.com/Homebrew/brew)\n- recipes like Makefile for setting up those files powered by [cargo-make](https://github.com/sagiegurari/cargo-make)\n\nThe purpose of this repository is to set up my environment for me, Although I am glad if this repository as a useful example when you provision your environment.\n\n## How to use\n\n1. (macOS) Sign in iCloud on your macOS via GUI.\n2. (macOS) Install the \"git\" command to your macOS.\n\n```shellsession\nxcode-select --install\n```\n\n3. Download cargo-make\n\nLinux:\n\n```shellsession\nexport CARGO_MAKE_VERSION=\"0.26.1\" \\\n\u0026\u0026 curl -sL https://github.com/sagiegurari/cargo-make/releases/download/${CARGO_MAKE_VERSION}/cargo-make-v${CARGO_MAKE_VERSION}-x86_64-unknown-linux-musl.zip \\\n| busybox unzip -p - cargo-make-v${CARGO_MAKE_VERSION}-x86_64-unknown-linux-musl/cargo-make \u003e bin/cargo-make \u0026\u0026 chmod a+x bin/cargo-make\n```\n\nmacOS:\n\n```shellsession\nexport CARGO_MAKE_VERSION=\"0.26.1\" \\\n\u0026\u0026 curl -sL https://github.com/sagiegurari/cargo-make/releases/download/${CARGO_MAKE_VERSION}/cargo-make-v${CARGO_MAKE_VERSION}-x86_64-apple-darwin.zip \\\n| bsdtar --strip-components 1 -C bin/ -xvf - cargo-make-v${CARGO_MAKE_VERSION}-x86_64-apple-darwin/cargo-make\n```\n\n4. and run\n\n**NOTE:** If you didn't use `--disable-check-for-updates` option, it makes symlink for `.cache` directory into an unexpected path like `~/.cache/.cache` because `cargo-make` creates `~/.cache` directory for check for updates before runs the tasks.\n\n```shellsession\nbin/cargo-make make --disable-check-for-updates --makefile tasks/install.toml\n```\n\n## How to try it with Docker Compose\n\n```shellsession\ndocker-compose up\n```\n\n```shellsession\ndocker-compose run ws zsh -l\n```\n\n![Try with Docker Compose](docs/images/try-with-docker-compose.gif)\n\n## Maintenance\n\n### macOS packages\n\n```shellsession\nbrew bundle dump --global --force\ngit diff symlinks/home.macos/.Brewfile\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmazgi%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmazgi%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmazgi%2Fdotfiles/lists"}