{"id":28453586,"url":"https://github.com/kylejb/dotfiles","last_synced_at":"2025-07-27T00:02:26.748Z","repository":{"id":115694416,"uuid":"367709538","full_name":"kylejb/dotfiles","owner":"kylejb","description":"Dotfiles for Linux, macOS, and Windows.","archived":false,"fork":false,"pushed_at":"2025-05-07T14:14:52.000Z","size":187,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-28T00:39:18.994Z","etag":null,"topics":["codespaces","dotfiles","linux","macos","windows","wsl2","zsh"],"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/kylejb.png","metadata":{"files":{"readme":".github/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}},"created_at":"2021-05-15T18:59:52.000Z","updated_at":"2025-05-07T14:14:56.000Z","dependencies_parsed_at":"2023-06-29T12:15:22.517Z","dependency_job_id":"76929874-6bb4-463b-a686-cfb112535ee5","html_url":"https://github.com/kylejb/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kylejb/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylejb%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylejb%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylejb%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylejb%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kylejb","download_url":"https://codeload.github.com/kylejb/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kylejb%2Fdotfiles/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267272027,"owners_count":24062396,"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-07-26T02:00:08.937Z","response_time":62,"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":["codespaces","dotfiles","linux","macos","windows","wsl2","zsh"],"created_at":"2025-06-06T18:14:56.373Z","updated_at":"2025-07-27T00:02:26.686Z","avatar_url":"https://github.com/kylejb.png","language":"Shell","readme":"# kylejb's dotfiles\n\nSupports macOS, Debian/Ubuntu, and Windows 11.\n\n\u003e [!Warning]\n\u003e Use at your own risk.\n\n## Install\n\nScript will download this repository to `~/.dotfiles` and will symlink the appropriate files to your home directory.\n\n- Windows:\n\n  ```ps1\n  Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass;\n  Invoke-Expression (Invoke-RestMethod -Uri \"https://raw.githubusercontent.com/kylejb/dotfiles/HEAD/installer.ps1\")\n  ```\n\n- MacOS / Linux:\n\n  ```bash\n  /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/kylejb/dotfiles/HEAD/installer.sh)\"\n  ```\n\nEverything is configurable from this folder. The main file you'll want to change right off the bat is `zsh/zshrc.symlink`, which sets up a few paths that may differ on your particular machine.\n\n## Update\n\n`dot` is a simple script that installs some dependencies, sets sane macOS defaults, and so on. Tweak this script, and occasionally run dot from time to time to keep your environment fresh and up-to-date. You can find this script in `bin/`.\n\n## Structure\n\nEverything is built around \"topic\" areas. If you're adding a new area to your\nforked dotfiles — \"Java\", for instance — you can add a `java` directory and put\nfiles in there. Anything with an extension of `.zsh` will get automatically\nincluded into your shell. Anything with an extension of `.symlink` will get\nsymlinked without extension into `$HOME` when you run `script/bootstrap`.\n\n### components\n\nThere are a few special files in the hierarchy.\n\n- **bin/**: Anything in `bin/` will get added to your `$PATH` and be made\n  available everywhere.\n- **topic/\\*.zsh**: Any files ending in `.zsh` get loaded into your\n  environment.\n- **topic/path.zsh**: Any file named `path.zsh` is loaded first and is\n  expected to setup `$PATH` or similar.\n- **topic/completion.zsh**: Any file named `completion.zsh` is loaded\n  last and is expected to setup autocomplete.\n- **topic/install.sh**: Any file named `install.sh` is executed when you run `script/install`. To avoid being loaded automatically, its extension is `.sh`, not `.zsh`.\n- **topic/update.sh**: Any file named `update.sh` is executed when you run `script/update`. To avoid being loaded automatically, its extension is `.sh`, not `.zsh`.\n- **topic/\\*.symlink**: Any file ending in `*.symlink` gets symlinked into\n  your `$HOME`. This is so you can keep all of those versioned in your dotfiles\n  but still keep those autoloaded files in your home directory. These get\n  symlinked in when you run `script/bootstrap`.\n\n## Thanks\n\nA decent amount of code stem or are inspired by [Juan Manual Orbegoso](https://github.com/JMOrbegoso)'s [dotfiles](https://github.com/JMOrbegoso/Dotfiles-for-Windows-11)\nand [Zach Holman](https://github.com/holman)'s [dotfiles](https://github.com/holman/dotfiles).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkylejb%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkylejb%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkylejb%2Fdotfiles/lists"}