{"id":34590586,"url":"https://github.com/kuatsure/dotfiles","last_synced_at":"2026-05-05T01:33:15.028Z","repository":{"id":22787954,"uuid":"26134161","full_name":"kuatsure/dotfiles","owner":"kuatsure","description":"my dotfiles","archived":false,"fork":false,"pushed_at":"2019-07-02T21:15:11.000Z","size":122,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-03-24T13:07:38.202Z","etag":null,"topics":["dotfiles","homebrew","shell","viml"],"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/kuatsure.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-MIT.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-11-03T19:11:00.000Z","updated_at":"2019-07-02T21:15:13.000Z","dependencies_parsed_at":"2022-08-21T12:00:16.746Z","dependency_job_id":null,"html_url":"https://github.com/kuatsure/dotfiles","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/kuatsure/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuatsure%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuatsure%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuatsure%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuatsure%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kuatsure","download_url":"https://codeload.github.com/kuatsure/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuatsure%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32632285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"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":["dotfiles","homebrew","shell","viml"],"created_at":"2025-12-24T10:50:45.887Z","updated_at":"2026-05-05T01:33:15.022Z","avatar_url":"https://github.com/kuatsure.png","language":"Vim script","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jarrett's dotfiles\n\n## Installation\n\n### Using Git and the bootstrap script\n\nYou can clone the repository wherever you want. The bootstrapper script will pull in the latest version and copy the files to your home folder.\n\n\n### Git-free install\n\nTo install these dotfiles without Git:\n\n```bash\ncd; curl -#L https://github.com/kuatsure/dotfiles/tarball/master | tar -xzv --strip-components 1 --exclude={README.md,bootstrap.sh,LICENSE-MIT.txt}\n```\n\nTo update later on, just run that command again.\n\n### Specify the `$PATH`\n\nIf `~/.path` exists, it will be sourced along with the other files, before any feature testing (such as [detecting which version of `ls` is being used](https://github.com/mathiasbynens/dotfiles/blob/aff769fd75225d8f2e481185a71d5e05b76002dc/.aliases#L21-26)) takes place.\n\nHere’s an example `~/.path` file that adds `~/utils` to the `$PATH`:\n\n```bash\nexport PATH=\"$HOME/utils:$PATH\"\n```\n\n### Add custom commands without creating a new fork\n\nIf `~/.extra` exists, it will be sourced along with the other files. You can use this to add a few custom commands without the need to fork this entire repository, or to add commands you don’t want to commit to a public repository.\n\nMy `~/.extra` looks something like this:\n\n```bash\n# Git credentials\n# Not in the repository, to prevent people from accidentally committing under my name\nGIT_AUTHOR_NAME=\"Jarrett Drouillard\"\nGIT_COMMITTER_NAME=\"$GIT_AUTHOR_NAME\"\ngit config --global user.name \"$GIT_AUTHOR_NAME\"\nGIT_AUTHOR_EMAIL=\"jarrett@thestyl.us\"\nGIT_COMMITTER_EMAIL=\"$GIT_AUTHOR_EMAIL\"\ngit config --global user.email \"$GIT_AUTHOR_EMAIL\"\n```\n\nYou could also use `~/.extra` to override settings, functions and aliases from my dotfiles repository. It’s probably better to [fork this repository](https://github.com/kuatsure/dotfiles/fork) instead, though.\n\n### Sensible OS X defaults\n\nWhen setting up a new Mac, you may want to set some sensible OS X defaults:\n\n```bash\n./.osx\n```\n\n### Sensible Global Npm Packages\n\nWhen setting up a new Mac, you may want to set some sensible global Npm packages:\n\n```bash\n./.npmGlobal\n```\n\n### Sensible Atom Packages\n\nWhen setting up a new Mac, you may want to set some sensible [Atom](https://atom.io/) packages:\n\n```bash\n./.apmPackages\n```\n\n_Note:_ Keep in mind that if you use the [beta channel](https://atom.io/beta) of Atom, you'll have to update `apm` to `apm-beta`. Also, your `atom` cli will be `atom-beta`.\n\n### Install Homebrew formulae\n\nWhen setting up a new Mac, you may want to install some common [Homebrew](http://brew.sh/) formulae (after installing Homebrew, of course):\n\n```bash\n./brew.sh\n```\n\n## Feedback\n\nSuggestions/improvements\n[welcome](https://github.com/kuatsure/dotfiles/issues)!\n\n## Author\n\n| [![twitter/kuatsure](https://s.gravatar.com/avatar/6ed4152e87cc06be69a22817ba93aaa5?s=70)](http://twitter.com/kuatsure \"Follow @kuatsure on Twitter\") |\n|---|\n| [Jarrett Drouillard](http://thestyl.us) |\n\n## Thanks to…\n\n* [Ryan Cromwell](http://cromwellhaus.com/) and [the eye opening idea of extreme portability](https://github.com/cromwellryan/dotfiles)\n* [Mathias Bynens](https://mathiasbynens.be/) and [his awesome repository](https://github.com/mathiasbynens/dotfiles)\n* @ptb and [his _OS X Lion Setup_ repository](https://github.com/ptb/Mac-OS-X-Lion-Setup)\n* [Ben Alman](http://benalman.com/) and his [dotfiles repository](https://github.com/cowboy/dotfiles)\n* [Chris Gerke](http://www.randomsquared.com/) and his [tutorial on creating an OS X SOE master image](http://chris-gerke.blogspot.com/2012/04/mac-osx-soe-master-image-day-7.html) + [_Insta_ repository](https://github.com/cgerke/Insta)\n* [Cãtãlin Mariş](https://github.com/alrra) and his [dotfiles repository](https://github.com/alrra/dotfiles)\n* [Gianni Chiappetta](http://gf3.ca/) for sharing his [amazing collection of dotfiles](https://github.com/gf3/dotfiles)\n* [Jan Moesen](http://jan.moesen.nu/) and his [ancient `.bash_profile`](https://gist.github.com/1156154) + [shiny _tilde_ repository](https://github.com/janmoesen/tilde)\n* [Lauri ‘Lri’ Ranta](http://lri.me/) for sharing [loads of hidden preferences](http://osxnotes.net/defaults.html)\n* [Matijs Brinkhuis](http://hotfusion.nl/) and his [dotfiles repository](https://github.com/matijs/dotfiles)\n* [Nicolas Gallagher](http://nicolasgallagher.com/) and his [dotfiles repository](https://github.com/necolas/dotfiles)\n* [Sindre Sorhus](http://sindresorhus.com/)\n* [Tom Ryder](http://blog.sanctum.geek.nz/) and his [dotfiles repository](https://github.com/tejr/dotfiles)\n* [Kevin Suttle](http://kevinsuttle.com/) and his [dotfiles repository](https://github.com/kevinSuttle/dotfiles) and [OSXDefaults project](https://github.com/kevinSuttle/OSXDefaults), which aims to provide better documentation for [`~/.osx`](http://mths.be/osx)\n* [Haralan Dobrev](http://hkdobrev.com/)\n\n* anyone who [contributed a patch](https://github.com/mathiasbynens/dotfiles/contributors) or [made a helpful suggestion](https://github.com/mathiasbynens/dotfiles/issues)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuatsure%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkuatsure%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuatsure%2Fdotfiles/lists"}