{"id":23221821,"url":"https://github.com/nass600/dotfiles","last_synced_at":"2026-04-12T21:54:34.875Z","repository":{"id":142387627,"uuid":"81018772","full_name":"nass600/dotfiles","owner":"nass600","description":"My dotfiles","archived":false,"fork":false,"pushed_at":"2025-02-28T18:13:32.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-28T22:28:05.983Z","etag":null,"topics":["dotfiles","git","macos","powerline","ubuntu","vim"],"latest_commit_sha":null,"homepage":null,"language":"Vim Script","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/nass600.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}},"created_at":"2017-02-05T20:10:38.000Z","updated_at":"2025-02-28T18:13:13.000Z","dependencies_parsed_at":"2023-11-16T18:53:39.490Z","dependency_job_id":null,"html_url":"https://github.com/nass600/dotfiles","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nass600%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nass600%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nass600%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nass600%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nass600","download_url":"https://codeload.github.com/nass600/dotfiles/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247361598,"owners_count":20926642,"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","git","macos","powerline","ubuntu","vim"],"created_at":"2024-12-18T22:18:27.760Z","updated_at":"2026-04-12T21:54:34.861Z","avatar_url":"https://github.com/nass600.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dotfiles\n\n[![macos](\u003chttps://img.shields.io/badge/macos_15_(sequoia)-white?style=for-the-badge\u0026logo=apple\u0026logoColor=black\u003e)]()\n[![GitHub tag](https://img.shields.io/github/tag/nass600/dotfiles.svg?style=for-the-badge\u0026logo=github)]()\n\nMy personal macOS setup. One command provisions a fresh MacBook from zero. Manages dotfiles, packages, macOS settings, and secrets — all in a single repo.\n\n\u003e Tested on macOS 15 Sequoia (Apple Silicon)\n\n## Fresh install\n\nOn a brand-new Mac, run:\n\n```sh\ncurl -fsSL https://raw.githubusercontent.com/nass600/dotfiles/main/install.sh | sh\n```\n\nThis will:\n\n1. Install Xcode Command Line Tools\n2. Install Homebrew\n3. Install chezmoi\n4. Clone this repo and apply all dotfiles, packages, and macOS settings in one pass\n\n## Day-to-day workflow\n\n### Adding a new package\n\n```sh\n# Edit the Brewfile\nchezmoi edit ~/Brewfile\n\n# Apply — chezmoi detects the change and runs `brew bundle` automatically\nchezmoi apply\n```\n\nNo \"remember to commit later\" step. The Brewfile *is* the installer — if it's not in the file, it's not installed.\n\n### Editing a dotfile\n\n```sh\nchezmoi edit ~/.zshrc   # opens the source file in chezmoi's repo\nchezmoi apply           # applies the change to your home dir\n```\n\n### Pushing changes to GitHub\n\n```sh\nchezmoi cd              # navigate to the chezmoi source repo\ngit add -A \u0026\u0026 git commit -m \"...\" \u0026\u0026 git push\n```\n\n### Checking for drift\n\n```sh\nbrew bundle check                 # lists packages installed but not in Brewfile\nbrew bundle cleanup --dry-run     # shows what would be removed to match Brewfile exactly\n```\n\n### Updating all packages\n\n```sh\nbrew update \u0026\u0026 brew upgrade \u0026\u0026 brew bundle\n```\n\n## Repo structure\n\n```\ndotfiles/\n├── install.sh                          # fresh install bootstrap\n├── Brewfile                            # all packages, casks, MAS apps\n├── .chezmoi.toml.tmpl                  # chezmoi config (variables, 1Password)\n│\n├── dot_gitconfig.tmpl                  # → ~/.gitconfig\n├── dot_gitignore                       # → ~/.gitignore\n├── dot_zprofile                        # → ~/.zprofile\n├── dot_zshrc                           # → ~/.zshrc (zinit-managed)\n├── dot_p10k.zsh.local                  # → ~/.p10k.zsh.local\n├── dot_npmrc.tmpl                      # → ~/.npmrc (secret from 1Password)\n│\n├── dot_config/\n│   ├── ghostty/config                  # → ~/.config/ghostty/config\n│   └── micro/settings.json             # → ~/.config/micro/settings.json\n│\n├── run_once_before_install-xcode.sh    # runs once: installs Xcode CLT\n├── run_once_macos-defaults.sh          # runs once: applies macOS system settings\n└── run_onchange_brew-bundle.sh.tmpl    # runs when Brewfile changes: brew bundle\n```\n\n## Tech stack\n\n| Tool | Purpose |\n|---|---|\n| **chezmoi** | Dotfiles manager (templating, secrets, change-triggered scripts) |\n| **Homebrew + Brewfile** | Package management (CLI tools, casks, Mac App Store apps) |\n| **zinit** | ZSH plugin manager |\n| **powerlevel10k** | ZSH prompt |\n| **Ghostty** | Terminal emulator |\n| **micro** | Default git commit editor |\n| **1Password CLI** | Secrets backend (integrates natively with chezmoi) |\n\n## chezmoi quick reference\n\n| Prefix | Meaning |\n|---|---|\n| `dot_` | Becomes `.filename` in home dir |\n| `.tmpl` | Processed as template (variables, secrets) |\n| `run_once_` | Runs one time on fresh install |\n| `run_onchange_` | Runs whenever the file's content changes |\n\n## License\n\n[MIT](LICENSE)\n\n## Author\n\n[Ignacio Velazquez](http://ignaciovelazquez.es)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnass600%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnass600%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnass600%2Fdotfiles/lists"}