{"id":15606117,"url":"https://github.com/paulfioravanti/dotfiles","last_synced_at":"2026-04-07T08:32:11.380Z","repository":{"id":18585844,"uuid":"21789683","full_name":"paulfioravanti/dotfiles","owner":"paulfioravanti","description":"My developer-focused config for Mac","archived":false,"fork":false,"pushed_at":"2025-02-20T11:10:30.000Z","size":1733,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T14:14:58.410Z","etag":null,"topics":["asdf","dotfiles","homebrew","iterm2","karabiner","macos","oh-my-zsh","rcm","shell","tmux","ultisnip-snippets","ultisnips","vim","zsh"],"latest_commit_sha":null,"homepage":"","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/paulfioravanti.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2014-07-13T12:19:43.000Z","updated_at":"2025-02-20T11:10:34.000Z","dependencies_parsed_at":"2023-02-18T03:31:05.620Z","dependency_job_id":"9832e24a-b0ba-421a-8af9-e0a57ef26d84","html_url":"https://github.com/paulfioravanti/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/paulfioravanti/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paulfioravanti%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paulfioravanti%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paulfioravanti%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paulfioravanti%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paulfioravanti","download_url":"https://codeload.github.com/paulfioravanti/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paulfioravanti%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31506562,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"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":["asdf","dotfiles","homebrew","iterm2","karabiner","macos","oh-my-zsh","rcm","shell","tmux","ultisnip-snippets","ultisnips","vim","zsh"],"created_at":"2024-10-03T04:21:12.669Z","updated_at":"2026-04-07T08:32:11.302Z","avatar_url":"https://github.com/paulfioravanti.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"## dotfiles\n\nMy configuration files for web development, and scripts to bootstrap a macOS\nmachine.\n\nSet up for use with [rcm][rcm].\n\n## Install\n\nFor a new macOS install, open up the Terminal application.\n\n### New Machines\n\nFor new machines, where no Github account has been logged into:\n\n```txt\ngit clone https://github.com/paulfioravanti/dotfiles.git ~/.dotfiles\n```\n\nOn a new machine, running the `git` command will prompt you to install the\nXCode Command Line Tools.\n\n### Established Machines\n\n```txt\ngit clone git@github.com:paulfioravanti/dotfiles.git ~/.dotfiles\n```\n\n## Bootstrap New Machine\n\n### Pre-Setup\n\nBefore setting up a development environment on a new machine:\n\n- Install [XCode][xcode] (if you run into any other issues that would\n  actually necessitate installing it or you are going to do Mac/iOS development)\n\n### Run Bootstrap Script\n\nThis script updates macOS to the latest version, installs XCode command line\ntools, and gets the machine in a state where other developer tools can be\ninstalled.\n\n```sh\nsource ~/.dotfiles/bootstrap.sh\n```\n\n### Run Setup Script\n\nThis script will install a bunch of developer-related tools.\n\n```sh\nsource ~/.dotfiles/setup.sh\n```\n\nOnce setup has finished, restart computer and run the `update` function that\nis contained in the `zshrc` file (zsh should have been installed during the\nbootstrap process):\n\n```sh\nupdate\n```\n\n## Generate Dotfiles\n\nGenerate dotfile directory, excluding (`-x`) files that don't need to be\nsymlinked to the home directory (this step will be performed during the\nbootstrap process above):\n\n#### `bash`:\n\n```sh\nrcup -x README.md -x LICENSE.txt -x setup.sh -x config.sh -x '*:vim:setup.sh' -x '*:tmux:setup.sh' -x '*:oh-my-zsh:setup.sh' -x macos -x asdf -x 'Library/Services'\n```\n\n#### `zsh`:\n\n```sh\nrcup -x README.md -x LICENSE.txt -x setup.sh -x config.sh -x \\*:vim:setup.sh -x \\*:tmux:setup.sh -x \\*:oh-my-zsh:setup.sh -x macos -x asdf -x 'Library/Services'\n```\n\n## Regenerate Dotfiles\n\n```sh\nrcup\n```\n\nOnce initial setup has been run, the `.rcrc` config file for `rcup` will have\nbeen created that contains the exclusions, so only `$ rcup` will need to be run\nin the future (unless more files to be excluded from being symlinked are added).\n\n## Setup Scripts\n\nRegenerate config for all apps and libraries under dotfiles (all of these\nscripts get run during the bootstrap process):\n\n```sh\nsource ~/.dotfiles/config.sh\n```\n\nOr individually (choose relevant script to regenerate config):\n\n```sh\nsource ~/.dotfiles/macos/homebrew/config.sh\nsource ~/.dotfiles/macos/iterm2/config.sh\n```\n\n## Social\n\n[![Contact][twitter-badge]][twitter-url]\u003cbr /\u003e\n[![Stack Overflow][stackoverflow-badge]][stackoverflow-url]\n\n[Homebrew]: https://brew.sh/\n[rcm]: https://github.com/thoughtbot/rcm\n[stackoverflow-badge]: http://stackoverflow.com/users/flair/567863.png\n[stackoverflow-url]: http://stackoverflow.com/users/567863/paul-fioravanti\n[twitter-badge]: https://img.shields.io/badge/contact-%40paulfioravanti-blue.svg\n[twitter-url]: https://twitter.com/paulfioravanti\n[xcode]: https://itunes.apple.com/au/app/xcode/id497799835?mt=12\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaulfioravanti%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaulfioravanti%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaulfioravanti%2Fdotfiles/lists"}