{"id":14069786,"url":"https://github.com/voku/dotfiles","last_synced_at":"2025-07-30T06:32:55.845Z","repository":{"id":17443761,"uuid":"20217405","full_name":"voku/dotfiles","owner":"voku","description":":bookmark_tabs: .dotfiles for Bash (Linux) / ZSH (Linux) / Git Bash (Windows) / Cygwin (Windows) / Bash on Ubuntu on Windows","archived":false,"fork":true,"pushed_at":"2024-06-07T19:31:33.000Z","size":12093,"stargazers_count":219,"open_issues_count":2,"forks_count":48,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-07-10T00:27:21.680Z","etag":null,"topics":["bashrc","dotfiles","hacktoberfest","linux","macos","vimrc","windows","zshrc"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"mathiasbynens/dotfiles","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/voku.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,"governance":null}},"created_at":"2014-05-27T11:20:55.000Z","updated_at":"2025-06-06T12:10:56.000Z","dependencies_parsed_at":"2023-09-24T10:28:03.379Z","dependency_job_id":null,"html_url":"https://github.com/voku/dotfiles","commit_stats":{"total_commits":1167,"total_committers":100,"mean_commits":11.67,"dds":0.6683804627249357,"last_synced_commit":"6cb1eedf179f17d8ca2c022e13c688e46c86a3e4"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/voku/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voku%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voku%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voku%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voku%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/voku","download_url":"https://codeload.github.com/voku/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voku%2Fdotfiles/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265268571,"owners_count":23737651,"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":["bashrc","dotfiles","hacktoberfest","linux","macos","vimrc","windows","zshrc"],"created_at":"2024-08-13T07:07:13.943Z","updated_at":"2025-07-30T06:32:53.681Z","avatar_url":"https://github.com/voku.png","language":"Shell","readme":"# :bookmark_tabs:  .dotfiles \n\n... for Bash / ZSH / Git Bash (Windows) / Cygwin (Windows) / Bash on Ubuntu on Windows\n\n--\u003e [Screenshots \u0026 Screencasts](https://github.com/voku/dotfiles/wiki/Images)\n\n## Installation\n\n### Using Git and the bootstrap script\n\nYou can clone the repository wherever you want. (I like to keep it in `~/Projects/dotfiles`, with `~/dotfiles` as a symlink.) The bootstrapper script will pull in the latest version and copy the files to your home folder.\n\n```bash\n# get the code\ncd ~ ; git clone https://github.com/voku/dotfiles.git; cd dotfiles\n\n# only for Debian based e.g. Ubuntu, Lubuntu, Kubuntu etc.\n./firstInstallDebianBased.sh\n\n# only for Cygwin (Windows)\n./firstInstallCygwin.sh\n\n# copy the dotfiles into your home directory\n./bootstrap.sh\n```\n\nTo update, `cd` into your local `dotfiles` repository and then:\n\n```bash\n./bootstrap.sh\n```\n\n### Add custom commands without creating a new fork\n\nIf `~/.config_dotfiles` does not exists, the \"bootstrap.sh\"-script will create a default config for you.\n\nMy `~/.config_dotfiles` looks something like this:\n\n```bash\n#!/bin/sh\n\nCONFIG_DEFAULT_USER=\"lars\"\nCONFIG_ZSH_PLUGINS=\"(git zsh-completions zsh-syntax-highlighting)\"\nCONFIG_BASH_PLUGINS=\"(git)\"\nCONFIG_ZSH_THEME=\"voku\"\nCONFIG_BASH_THEME=\"voku\"\nCONFIG_CHARSET_UTF8=true\nCONFIG_LANG=\"en_US\"\nCONFIG_TERM_LOCAL=\"\" # terms: screen byobu tmux\nCONFIG_TERM_SSH=\"\"\n```\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#!/bin/sh\n\nexport DOTFILESSRCDIR=\"/home/lars/dotfiles/\"\n\nGIT_AUTHOR_NAME=\"Lars Moelleken\"\nGIT_COMMITTER_NAME=\"$GIT_AUTHOR_NAME\"\ngit config --file=$HOME/.gitconfig.extra user.name \"$GIT_AUTHOR_NAME\"\n\nGIT_AUTHOR_EMAIL=\"lars@moelleken.org\"\nGIT_COMMITTER_EMAIL=\"$GIT_AUTHOR_EMAIL\"\ngit config --file=$HOME/.gitconfig.extra user.email \"$GIT_AUTHOR_EMAIL\"\n\ngit config --file=$HOME/.gitconfig.extra push.default simple\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/voku/dotfiles/fork) instead, though. And you can use `~/.vimrc.extra` to edit the vim settings without touching the main configuration.\n\n## Run the tests\n\ne.g.:\n```bash\nbash .redpill/tests/functions-tests.sh\nzsh .redpill/tests/functions-tests.sh\n```\n\n## Feedback\n\nSuggestions/improvements\n[welcome](https://github.com/voku/dotfiles/issues)!\n\n\n## Thanks to…\n\n* [DrVanScott](https://github.com/DrVanScott/) and his [dotfiles repository](https://github.com/DrVanScott/dotfiles)\n* [TuxCoder](https://github.com/TuxCoder/) and his [dotfiles repository](https://github.com/tuxcoder/dotfiles)\n* [Mathias Bynens](https://github.com/mathiasbynens/) and his awesome [dotfiles 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)\n* [Haralan Dobrev](http://hkdobrev.com/)\n* anyone who [contributed a patch](https://github.com/voku/dotfiles/contributors) or [made a helpful suggestion](https://waffle.io/voku/dotfiles)\n","funding_links":[],"categories":["Shell"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoku%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvoku%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoku%2Fdotfiles/lists"}