{"id":18764731,"url":"https://github.com/ricsam/macos-setup","last_synced_at":"2026-03-19T06:15:27.306Z","repository":{"id":228969979,"uuid":"775417382","full_name":"ricsam/macos-setup","owner":"ricsam","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-22T10:59:15.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-20T20:38:00.957Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/ricsam.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":"2024-03-21T10:56:56.000Z","updated_at":"2024-06-22T10:59:18.000Z","dependencies_parsed_at":"2024-03-21T12:26:35.157Z","dependency_job_id":"7bd507bd-393d-4e1f-b71d-d996c50bbcc3","html_url":"https://github.com/ricsam/macos-setup","commit_stats":null,"previous_names":["ricsam/macos-setup"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ricsam/macos-setup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ricsam%2Fmacos-setup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ricsam%2Fmacos-setup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ricsam%2Fmacos-setup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ricsam%2Fmacos-setup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ricsam","download_url":"https://codeload.github.com/ricsam/macos-setup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ricsam%2Fmacos-setup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27567249,"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","status":"online","status_checked_at":"2025-12-07T02:00:07.896Z","response_time":53,"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":[],"created_at":"2024-11-07T18:31:17.806Z","updated_at":"2025-12-07T11:30:36.870Z","avatar_url":"https://github.com/ricsam.png","language":null,"readme":"# macos-setup\n\nInstall Xcode Command Line Tools\n```bash\nxcode-select --install\n```\n\n\n## Settings\n* Keyboard - key repeat + delay until repeat -\u003e fast / short\n* Keyboard - key repeats: `defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false`\n* Trackpad - stracking speed -\u003e fast\n* Trackpad - Tap to click -\u003e Yes\n* Trackpad - secondary click -\u003e click with two fingers\n* Trackpad - more gestures -\u003e swipe between pages -\u003e swipe with three fingers\n* Input sources, remove extra input source, us only keyboard\n\n## Programs\n* iterm\n* arc\n* [brew](https://brew.sh/)\n* install watchman (on intel) `brew install watchman`\n* install watch `brew install watch`\n* install [mkcert](https://github.com/FiloSottile/mkcert?tab=readme-ov-file#macos)\n\n## Shell\nInstall oh-my-zsh. Taken from [ohmyz.sh](https://ohmyz.sh/#install)\n```bash\nsh -c \"$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"\n```\n\nInstall zsh-autosuggestions. Takend from [github.com/zsh-users/zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions/blob/master/INSTALL.md#oh-my-zsh)\n```bash\ngit clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions\n```\nadd `zsh-autosuggestions` to the plugins in `vim ~/.zshrc` like\n```bash\nplugins=(\n  git\n  zsh-autosuggestions\n)\n```\n\nAdd time to the prompt. Add the following to the end of the `~/.zshrc` file:\n```bash\nreset-prompt-and-accept-line() {\n    zle reset-prompt\n    zle accept-line\n}\n\nzle -N reset-prompt-and-accept-line\n\nbindkey '^m' reset-prompt-and-accept-line\n\nPROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%}%D{%H:%M:%S} % %{$reset_color%}'\n```\n\n## Vscode\n1. Install vscode\n2. Login to setup settings sync\n3. Install code to path\n4. Select default terminal profile - zsh\n\n\n## Install font\n[https://github.com/tonsky/FiraCode/wiki](https://github.com/tonsky/FiraCode/wiki)\n\n*Note:* Enable ligatures in vscode\n\n## Git\n```bash\ngit config --global user.email 'ricsam@users.noreply.github.com' \ngit config --global user.name 'Richie'\n```\n\n\n## Docker\nDocker engine settings\n```json\n{\n  \"builder\": {\n    \"gc\": {\n      \"defaultKeepStorage\": \"20GB\",\n      \"enabled\": true\n    }\n  },\n  \"dns\": [\n    \"8.8.8.8\"\n  ],\n  \"experimental\": false\n}\n```\n\n## Github\n```bash\nssh-keygen -t rsa -b 4096 -f ~/.ssh/github\ncat ~/.ssh/github.pub | pbcopy\n```\n\n`vim ~/.ssh/config` and add\n\n```\nHost github.com\n  AddKeysToAgent yes\n  UseKeychain yes\n  User git\n  IdentityFile ~/.ssh/github\n  HostName github.com\n  Port 22\n```\n\nVerify with `ssh -T github.com`\n\n\n## node\n* Install [nvm](https://github.com/nvm-sh/nvm)\n* `nvm install v18 \u0026\u0026 nvm use v18`\n* Install bun\n* Install [pnpm](https://pnpm.io/installation)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fricsam%2Fmacos-setup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fricsam%2Fmacos-setup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fricsam%2Fmacos-setup/lists"}