{"id":13863049,"url":"https://github.com/thiskevinwang/dotfiles","last_synced_at":"2026-02-18T12:31:38.192Z","repository":{"id":45376281,"uuid":"265357053","full_name":"thiskevinwang/dotfiles","owner":"thiskevinwang","description":"Sync all Dotfiles, Brew Binaries, Mac Apps, VSCode extensions with 1 command.","archived":false,"fork":false,"pushed_at":"2025-12-02T14:28:45.000Z","size":283,"stargazers_count":14,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-04T05:49:40.551Z","etag":null,"topics":["appstore","dotfiles","homebrew","macos","neovim","vim","vscode"],"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/thiskevinwang.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-05-19T20:22:44.000Z","updated_at":"2025-12-02T14:28:50.000Z","dependencies_parsed_at":"2025-05-16T13:28:28.758Z","dependency_job_id":"e38478cc-2421-4132-9ffe-417f6dc324cb","html_url":"https://github.com/thiskevinwang/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thiskevinwang/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thiskevinwang%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thiskevinwang%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thiskevinwang%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thiskevinwang%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thiskevinwang","download_url":"https://codeload.github.com/thiskevinwang/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thiskevinwang%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29578952,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"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":["appstore","dotfiles","homebrew","macos","neovim","vim","vscode"],"created_at":"2024-08-05T06:02:00.659Z","updated_at":"2026-02-18T12:31:38.185Z","avatar_url":"https://github.com/thiskevinwang.png","language":"Shell","funding_links":[],"categories":["Shell"],"sub_categories":[],"readme":"# dotfiles\n\nThis is me managing my Dotfiles, Brew Binaries, Mac Apps, VSCode extensions\n\n\n## Quickstart\n\nInstall Homebrew[^brew]\n\n[^brew]: https://brew.sh/\n\n```bash\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n```\n\n(You might need a new terminal session for `brew` to be detected.)\n\n```bash\ngit clone https://github.com/thiskevinwang/dotfiles.git\ncd dotfiles\nsh install.sh\n```\n\n## Vim/Neovim\n\n```console\n❯ nvim\n\nthis starts a neovim session\n\n❯ :PlugInstall\n\nThis installs all the specified plugins\n```\n\n## VSCode\n\nKeybindings are here...\n\nhttps://thekevinwang.com/atoms/01K993VJKY10E06E7AY2XAHRRM\n\n## Misc Machine Setup\na\n### Map `Caps Lock` (\u003ckbd\u003e⇪\u003c/kbd\u003e) to `Control` (\u003ckbd\u003e⌃\u003c/kbd\u003e)\n\n![image](https://user-images.githubusercontent.com/26389321/131413420-45915f24-b0d9-4107-9205-2a2bc9e795d8.png)\n\n### Signed commits\n\nThere are a few steps following the installation of `gnupg`:\n\n- Generate a key\n- Set the key id in a machine-specific config\n- Upload the public key to GitHub\n\n\n```console\nuser@~: $ gpg --full-generate-key\npub   ed25519 2025-12-01 [SC] [expires: 2027-12-01]\n      KEY_ID\nuid                      user (comment) \u003cemail\u003e\nsub   cv25519 2025-12-01 [E] [expires: 2027-12-01]\n\nuser@~: $ cat \u003e ~/.gitconfig.local \u003c\u003c 'EOF'\n[user]\n    signingkey = \u003cKEY_ID\u003e\n\n[commit]\n    gpgsign = true\nEOF\n\nuser@~: $ git config --get commit.gpgsign\nuser@~: $ export GPG_TTY=$(tty) \u0026\u0026 echo \"test\" | gpg --clearsign\nuser@~: $ echo 'export GPG_TTY=$(tty)' \u003e\u003e ~/.zshrc \u0026\u0026 source ~/.zshrc\nuser@~: $ gpg --armor --export KEY_ID\n# Upload this to https://github.com/settings/gpg/new\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthiskevinwang%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthiskevinwang%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthiskevinwang%2Fdotfiles/lists"}