{"id":24431169,"url":"https://github.com/ruchernchong/dotfiles","last_synced_at":"2025-04-12T12:50:36.189Z","repository":{"id":40566722,"uuid":"93407152","full_name":"ruchernchong/dotfiles","owner":"ruchernchong","description":"macOS environment setup; compatible up to macOS Ventura (^13.0)","archived":false,"fork":false,"pushed_at":"2025-03-17T08:48:23.000Z","size":1935,"stargazers_count":11,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-05T10:06:36.376Z","etag":null,"topics":["dotfiles","macos","shell","zsh"],"latest_commit_sha":null,"homepage":"https://github.com/ruchernchong/dotfiles","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/ruchernchong.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"ruchernchong","open_collective":"ruchernchong","ko_fi":"ruchernchong","tidelift":null,"custom":null,"polar":"ruchernchong","buy_me_a_coffee":"ruchernchong","thanks_dev":"u/gh/ruchernchong"}},"created_at":"2017-06-05T13:32:59.000Z","updated_at":"2025-03-17T08:48:29.000Z","dependencies_parsed_at":"2023-02-15T22:31:14.537Z","dependency_job_id":"623ac93a-87ce-4afe-81c6-345f826aeb40","html_url":"https://github.com/ruchernchong/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruchernchong%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruchernchong%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruchernchong%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruchernchong%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ruchernchong","download_url":"https://codeload.github.com/ruchernchong/dotfiles/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248571329,"owners_count":21126516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","shell","zsh"],"created_at":"2025-01-20T14:59:13.528Z","updated_at":"2025-04-12T12:50:36.166Z","avatar_url":"https://github.com/ruchernchong.png","language":"Shell","funding_links":["https://github.com/sponsors/ruchernchong","https://opencollective.com/ruchernchong","https://ko-fi.com/ruchernchong","https://polar.sh/ruchernchong","https://buymeacoffee.com/ruchernchong","https://thanks.dev/u/gh/ruchernchong"],"categories":[],"sub_categories":[],"readme":"# dotfiles\n\nThis repository contains dotfiles and scripts that I use to customize my macOS/Linux development workflow. Feel free to use this as a reference for your own setup.\n\n![Terminal](terminal.png)\n\n## Table of Contents\n\n- [Features](#features)\n- [Installation](#installation)\n  - [OTA Installation](#ota-installation)\n  - [Manual Cloning](#cloning-the-repository)\n- [System Requirements](#system-requirements)\n- [Configurations](#configurations)\n- [Feedback](#feedback)\n- [License](#license)\n\n## Features\n\n- Installs Oh-My-Zsh by default\n- Comprehensive git aliases for daily use\n- Customized oh-my-zsh settings\n- [Automated setup script](setup.sh)\n\n## System Requirements\n\n### Supported Platforms\n\n- macOS (10.15+)\n- Linux (Ubuntu 20.04+, Fedora 33+)\n\n### Prerequisites\n\n- Zsh\n- Git\n- Homebrew (macOS)\n- curl\n\n## Configurations\n\n### Zsh Customizations\n\n- Custom Oh-My-Zsh theme configuration\n- Key plugins:\n  - zsh-autosuggestions\n  - zsh-syntax-highlighting\n  - git\n  - docker\n\n### Git Aliases\n\n- `g` → `git`\n- `gp` → `git pull`\n- `gps` → `git push`\n- Custom commit and branch management shortcuts\n\n## Installation\n\n**Warning:** Do not blindly use these settings as they may override or modify your existing configuration. It is highly recommended to clone/fork this repository to another folder. Use at your own risk!\n\n### OTA Installation\n\n```zsh\ncurl -L https://raw.githubusercontent.com/ruchernchong/dotfiles/master/install.sh | bash\n```\n\n### Cloning the Repository\n\n```zsh\ngit clone https://github.com/ruchernchong/dotfiles.git $HOME/dotfiles\ncd $HOME/dotfiles\nchmod a+x setup.sh\nsource setup.sh\n\n# Set up Git Hooks\ngit config core.hooksPath .githooks\nchmod +x .githooks/post-push\n```\n\n### Git Hooks Setup\n\nThis repository includes a post-push hook for automatically updating and committing the Brewfile:\n\n- Located in `.githooks/post-push`\n- Automatically runs `brew bundle dump`\n- Stages and commits Brewfile changes\n- Requires manual activation after cloning\n\nTo enable the hook:\n\n```zsh\ngit config core.hooksPath .githooks\nchmod +x .githooks/post-push\n```\n\n## Feedback\n\nI welcome any feedback or suggestions by creating an [issue](https://github.com/ruchernchong/dotfiles/issues) or a [pull request](https://github.com/ruchernchong/dotfiles/pulls).\n\n## License\n\nThis code is available under the [MIT License](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruchernchong%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fruchernchong%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruchernchong%2Fdotfiles/lists"}