{"id":15715904,"url":"https://github.com/frabonomi/dev-setup","last_synced_at":"2026-05-09T04:33:23.844Z","repository":{"id":199222261,"uuid":"655826323","full_name":"frabonomi/dev-setup","owner":"frabonomi","description":"A collection of dotfiles and and scripts to set up my new machines for development 💻","archived":false,"fork":false,"pushed_at":"2023-10-24T09:12:38.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-30T20:18:43.302Z","etag":null,"topics":["brew","cask","dotfiles","dotfiles-macos","gitaliases","gitconfig"],"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/frabonomi.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":"2023-06-19T17:20:42.000Z","updated_at":"2023-10-09T08:48:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"48b65930-51a1-4399-949f-37ec14e205a1","html_url":"https://github.com/frabonomi/dev-setup","commit_stats":null,"previous_names":["frabonomi/dev-setup"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/frabonomi/dev-setup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frabonomi%2Fdev-setup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frabonomi%2Fdev-setup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frabonomi%2Fdev-setup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frabonomi%2Fdev-setup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frabonomi","download_url":"https://codeload.github.com/frabonomi/dev-setup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frabonomi%2Fdev-setup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32807245,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["brew","cask","dotfiles","dotfiles-macos","gitaliases","gitconfig"],"created_at":"2024-10-03T21:43:24.231Z","updated_at":"2026-05-09T04:33:23.830Z","avatar_url":"https://github.com/frabonomi.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dev setup\n\nThis is the repo I use to set up a new machine and get it ready for development.\n\n## Prerequisites\n\nRun this to make sure you're up to date and and you have XCode command line tools installed:\n\n```bash\n./osxprep.sh\n```\n\n###  Dotfiles\n\n[TBD]\n\n### Mac OSX defaults\n\nTweak the operating system with better defaults:\n\n```bash\n./osx.sh\n```\n\nPlease note that you may need to log out and log back in for some changes to take effect.\n\n### Homebrew\n\nInstall [Homebrew](https://docs.brew.sh/Installation):\n\n```bash\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)\"\n```\n\n### Install cli tools\n\n```bash\n./brew.sh\n```\n\n### zsh\n\nInstall [zsh](https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH):\n\n```bash\nbrew install zsh\n```\n\nand set it as your default shell:\n\nOn M1-based machines:\n```bash\nchsh -s /opt/homebrew/bin/zsh\n```\n\nOn Intel-based machines:\n```bash\nchsh -s /usr/local/bin/zsh\n```\n\n### oh-my-zsh\n\nInstall [oh-my-zsh](https://ohmyz.sh/):\n\n```bash\nsh -c \"$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"\n```\n\n#### Install zsh-syntax-highlighting\n\nInstall a custom plugin for zsh to add syntax highlighting when typing in the shell following [these instructions](https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md#oh-my-zsh).\n\n### Git\n\nInstall [Git](https://git-scm.com/download/mac):\n\n```bash\nbrew install git\n```\n\n#### Set up Git SSH authentication with Github\n\n1. Generate a new key ([reference](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)):\n   ```bash\n   ssh-keygen -t ed25519 -C \"your_email@example.com\"\n   ```\n2. Copy the SSH public key to your clipboard ([reference](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account#adding-a-new-ssh-key-to-your-account))\n   ```bash\n   pbcopy \u003c ~/.ssh/id_ed25519.pub\n   ```\n3. Create a new SSH key [on Github](https://github.com/settings/keys) and paste your public key\n\n### Install apps\n\nInstall apps using:\n\n```bash\n./apps.sh\n```\n\n### Set up dock icons\n\n```bash\n./dock.sh\n```\n\n## Restore apps settings using Mackup\n\n[TBD]\n\n## Web development\n\n### Install nvm and node\n\nUse NVM (Node Version Manager) to be able to manage the installation of different Node versions on the same machine.\n\n- [Install NVM](https://github.com/nvm-sh/nvm#install--update-script) using curl\n\n  ```bash\n  curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash\n  ```\n\n  This will also add a snippet in `.zshrc` file to load NVM.\n\n- [Install Node](https://github.com/nvm-sh/nvm#usage). Here we install the long term support version\n\n  ```bash\n  nvm install --lts\n  ```\n\n## References\n\n- [macOS defaults](https://macos-defaults.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrabonomi%2Fdev-setup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrabonomi%2Fdev-setup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrabonomi%2Fdev-setup/lists"}