{"id":43821460,"url":"https://github.com/abereghici/dotfiles","last_synced_at":"2026-02-06T01:58:33.244Z","repository":{"id":113377950,"uuid":"488519914","full_name":"abereghici/dotfiles","owner":"abereghici","description":"💻 My personal dotfiles: zsh, git, neovim, alacritty, wezterm, zellij, etc.","archived":false,"fork":false,"pushed_at":"2026-01-30T12:55:22.000Z","size":1868,"stargazers_count":7,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-31T05:58:21.644Z","etag":null,"topics":["alacritty","dotfiles","git","lazyvim","macos","neovim","wezterm","zellij","zsh"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abereghici.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2022-05-04T09:05:16.000Z","updated_at":"2026-01-30T12:55:26.000Z","dependencies_parsed_at":"2024-07-28T13:53:53.685Z","dependency_job_id":"258f6ad4-a71e-4710-8113-80b3121378d5","html_url":"https://github.com/abereghici/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abereghici/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abereghici%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abereghici%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abereghici%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abereghici%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abereghici","download_url":"https://codeload.github.com/abereghici/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abereghici%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29145560,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T01:13:33.096Z","status":"ssl_error","status_checked_at":"2026-02-06T01:11:47.313Z","response_time":65,"last_error":"SSL_read: 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":["alacritty","dotfiles","git","lazyvim","macos","neovim","wezterm","zellij","zsh"],"created_at":"2026-02-06T01:58:32.399Z","updated_at":"2026-02-06T01:58:33.229Z","avatar_url":"https://github.com/abereghici.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ~abereghici 🌶️\n\nMy personal dotfiles for configuring macOS with Zsh and Homebrew.\n\n\u003e [!IMPORTANT] Please only open pull requests that fix bugs or add improvements\n\u003e without any breaking changes.\n\n![abereghici terminal](screenshot.png)\n\n\u003e [!WARNING] I recommend forking this repository to create your own set of\n\u003e dotfiles.\n\n## Requirements\n\n- macOS\n- Homebrew (the install script will install Homebrew)\n- Zsh (the install script will install Zsh via Homebrew)\n\n## What's in there?\n\n- Handy [binary scripts](bin/).\n- [Custom zsh theme](tilde/.starship.toml) with Git status, etc. using\n  [Starship](https://starship.rs/).\n- [Git aliases](tilde/.gitconfig).\n- [Shell aliases](zsh/aliases.zsh).\n- zsh / [fzf](zsh/fzf.zsh).\n- git / delta syntax-highlighting diff tool.\n- Sensible [macOS defaults](setup/macos.sh).\n- [Neovim](tilde/.config/nvim/)\n- [macOS apps](setup/Brewfile) I use.\n\n## Installation\n\n1. Enable **Firewall** under **System Settings** → **Network**\n1. Point the DNS Servers to [Cloudflare DNS](https://one.one.one.one/dns/)\n   - `1.1.1.1`\n   - `1.0.0.1`\n   - `2606:4700:4700::1111`\n   - `2606:4700:4700::1001`\n1. Configure Git and GitHub SSH\n\n   1. [Generate SSH key and add it to the ssh-agent](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)\n   1. [Add your public SSH key to GitHub account](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account)\n   1. Test your authentication with:\n\n      ```bash\n      ssh -T git@github.com\n      ```\n\n1. Choose _manual_ or _automatic_ dotfiles installation below\n\n### Manually\n\n```shell\ngit clone git@github.com:abereghici/dotfiles.git ~/dotfiles\ncd ~/dotfiles\n./setup/brew.sh\n./setup/misc.sh\n./setup/symlinks.sh\n```\n\n### Automatically\n\nTo automate the setup of your dotfiles on a new machine, use the\n[setup](./setup.sh) script.\n\n\u003e [!CAUTION] Use at your own risk!\n\n```shell\ngit clone git@github.com:abereghici/dotfiles.git ~/dotfiles\n~/dotfiles/setup.sh\n```\n\nThis will install all required dotfiles in your home directory as symlinks.\nEverything is then configured via modifying files in `~/dotfiles`.\n\n## Extras\n\n### Set macOS defaults\n\n```shell\n./setup/macos.sh\n```\n\n#### Keyboard conflicts\n\n- Remap `Mission control` keys to `Ctrl` + `Option` + `Arrow Keys` because\n  conflicts with Neovim.\n\n## Local customizations\n\nThe dotfiles can be extended to suit additional local requirements by using the\nfollowing files:\n\n### `~/.zsh.local`\n\nIf this file exists, it will be automatically sourced after all the other shell\nrelated files allowing its content to add to or overwrite the existing aliases,\nsettings, PATH, etc.\n\n### `~/.gitconfig.local`\n\nIf this file exists, it will be automatically included after the configurations\nfrom `~/.gitconfig` allowing its content to overwrite or add to the existing\n`git` configurations.\n\n\u003e [!TIP] Use `~/.gitconfig.local` to store [sensitive information](git/) such as\n\u003e the `git` user credentials for individual repositories.\n\n## Updating\n\nTo update an existing install:\n\n```shell\ncd ~/dotfiles\ngit pull\n./setup.sh\n```\n\n## License\n\nMIT License.\n\n## Inspiration\n\n- [nicksp/dotfiles](https://github.com/nicksp/dotfiles)\n- [holman/dotfiles](https://github.com/holman/dotfiles)\n- [mathiasbynes/dotfiles](https://github.com/mathiasbynens/dotfiles)\n- [sapegin/dotfiles](https://github.com/sapegin/dotfiles)\n- \u003chttps://remysharp.com/2018/08/23/cli-improved\u003e\n- \u003chttps://evanhahn.com/a-decade-of-dotfiles\u003e\n- \u003chttps://cpojer.net/posts/set-up-a-new-mac-fast\u003e\n- \u003chttps://thevaluable.dev/zsh-install-configure-mouseless/\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabereghici%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabereghici%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabereghici%2Fdotfiles/lists"}