{"id":17449380,"url":"https://github.com/klaemo/dotfiles","last_synced_at":"2025-08-24T22:52:10.693Z","repository":{"id":26384333,"uuid":"29833763","full_name":"klaemo/dotfiles","owner":"klaemo","description":":wrench: .files, including osxdefaults — sensible hacker defaults for OS X","archived":false,"fork":false,"pushed_at":"2024-11-13T20:40:06.000Z","size":692,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-03T15:21:47.364Z","etag":null,"topics":["dotfiles","shell"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/klaemo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2015-01-25T22:16:01.000Z","updated_at":"2024-11-13T20:40:10.000Z","dependencies_parsed_at":"2024-10-20T17:17:58.112Z","dependency_job_id":null,"html_url":"https://github.com/klaemo/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klaemo%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klaemo%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klaemo%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klaemo%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/klaemo","download_url":"https://codeload.github.com/klaemo/dotfiles/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232919268,"owners_count":18596768,"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","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","shell"],"created_at":"2024-10-17T21:37:10.658Z","updated_at":"2025-01-07T18:29:13.019Z","avatar_url":"https://github.com/klaemo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clemens' Dotfiles\n\n## How to install\n\nThe installation step may overwrite existing dotfiles in your HOME directory.\n\n```bash\n$ bash -c \"$(curl -fsSL raw.github.com/klaemo/dotfiles/master/bin/dotfiles)\"\n```\n\nN.B. If you wish to fork this project and maintain your own dotfiles, you must\nsubstitute my username for your own in the above command and the 2 variables\nfound at the top of the `bin/dotfiles` script.\n\n## How to update\n\nYou should run the update when:\n\n* You make a change to `~/.dotfiles/git/gitconfig` (the only file that is\n  copied rather than symlinked).\n* You want to pull changes from the remote repository.\n* You want to update Homebrew formulae and Node packages.\n\nRun the dotfiles command:\n\n```bash\n$ dotfiles\n```\n\nOptions:\n\n\u003ctable\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\u003ccode\u003e-h\u003c/code\u003e, \u003ccode\u003e--help\u003c/code\u003e\u003c/td\u003e\n        \u003ctd\u003eHelp\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\u003ccode\u003e--no-packages\u003c/code\u003e\u003c/td\u003e\n        \u003ctd\u003eSuppress package updates\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n        \u003ctd\u003e\u003ccode\u003e--no-sync\u003c/code\u003e\u003c/td\u003e\n        \u003ctd\u003eSuppress pulling from the remote repository\u003c/td\u003e\n    \u003c/tr\u003e\n\u003c/table\u003e\n\n\n## Features\n\n### Automatic software installation\n\nHomebrew formulae:\n\n* git\n* htop\n* [ansible](https://www.ansible.com/)\n* [rsync](https://rsync.samba.org/) (latest version, rather than the out-dated OS X installation)\n* [wget](http://www.gnu.org/software/wget/)\n* [httpie](https://github.com/jkbrzt/httpie)\n\n### Local/private zsh configuration\n\nAny private and custom zsh commands and configuration should be placed in a\n`~/.zsh_extra` file. This file will not be under version control or\ncommitted to a public repository. If `~/.zsh_extra` exists, it will be\nsourced for inclusion in `zsh_env`.\n\nHere is an example `~/.zsh_extra`:\n\n```bash\n# PATH exports\nPATH=$PATH:~/.gem/ruby/1.8/bin\nexport PATH\n\n# Git credentials\n# Not under version control to prevent people from\n# accidentally committing with your details\nGIT_AUTHOR_NAME=\"Clemens Stolle\"\nGIT_AUTHOR_EMAIL=\"clemens@example.com\"\nGIT_COMMITTER_NAME=\"$GIT_AUTHOR_NAME\"\nGIT_COMMITTER_EMAIL=\"$GIT_AUTHOR_EMAIL\"\n# Set the credentials (modifies ~/.gitconfig)\ngit config --global user.name \"$GIT_AUTHOR_NAME\"\ngit config --global user.email \"$GIT_AUTHOR_EMAIL\"\n\n# Aliases\nalias code=\"cd ~/Code\"\n```\n\nN.B. Because the `git/gitconfig` file is copied to `~/.gitconfig`, any private\ngit configuration specified in `~/.extra` will not be committed to\nyour dotfiles repository.\n\n## Acknowledgements\n\nInspiration and code was taken from many sources, including:\n\n* [@necolas](https://github.com/necolas) (Nicolas Gallagher)\n  [https://github.com/necolas/dotfiles](https://github.com/necolas/dotfiles)\n* [@mathiasbynens](https://github.com/mathiasbynens) (Mathias Bynens)\n  [https://github.com/mathiasbynens/dotfiles](https://github.com/mathiasbynens/dotfiles)\n* [@hukl](https://github.com/hukl) (hukl)\n  [https://github.com/hukl/dotfiles](https://github.com/hukl/dotfiles)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fklaemo%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fklaemo%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fklaemo%2Fdotfiles/lists"}