{"id":17912935,"url":"https://github.com/joshmock/dotfiles","last_synced_at":"2025-03-23T22:35:16.394Z","repository":{"id":4026068,"uuid":"5126219","full_name":"JoshMock/dotfiles","owner":"JoshMock","description":"a plaintext zen garden of sorts","archived":false,"fork":false,"pushed_at":"2024-04-13T22:28:39.000Z","size":770,"stargazers_count":14,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-04-14T12:18:13.697Z","etag":null,"topics":["chezmoi","dotfiles","linux","lunarvim","neovim","swaywm","vim","zsh"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"tholman/intense-images","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JoshMock.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}},"created_at":"2012-07-20T17:37:04.000Z","updated_at":"2024-04-18T01:46:43.272Z","dependencies_parsed_at":"2023-11-14T20:24:17.225Z","dependency_job_id":"b7581765-160d-4fc4-b663-3999a0cb6abc","html_url":"https://github.com/JoshMock/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/JoshMock%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoshMock%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoshMock%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoshMock%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JoshMock","download_url":"https://codeload.github.com/JoshMock/dotfiles/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245180497,"owners_count":20573677,"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":["chezmoi","dotfiles","linux","lunarvim","neovim","swaywm","vim","zsh"],"created_at":"2024-10-28T19:48:25.453Z","updated_at":"2025-03-23T22:35:15.864Z","avatar_url":"https://github.com/JoshMock.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"These are my dotfiles.\nHand-crafted and distilled for well over a decade now.\nThey are a lifelong work-in-progress.\n\n## My dev setup\n\nI'm a heavy keyboard user.\nAny time I can do something without using a mouse, I will.\n\n### Hardware\n\n- Laptops: Lenovo ThinkPad and Dell XPS\n- Keyboard: [ZSA Moonlander](https://www.zsa.io/moonlander/)\n- Mouse: whatever's nearby, preferably Bluetooth-based\n\n### Software\n\n- **Operating system:** [Arch Linux](https://archlinux.org/) or [EndeavourOS](https://endeavouros.com/) (Arch-based)\n- **Window manager:** [Hyprland](https://hyprland.org/)\n- **Shell:** zsh + [antidote](https://getantidote.github.io/) + [various zsh plugins](./home/dot_zsh_plugins.txt)\n- **IDE:** Neovim ([LazyVim](https://www.lazyvim.org)-based setup) + [Kitty](https://sw.kovidgoyal.net/kitty/)\n\n#### Various utilities\n\n- **App launcher:** [Rofi](https://github.com/davatorium/rofi)\n- **Music player:** [Mopidy](https://mopidy.com/)\n- **To-do list manager:** [Taskwarrior](https://taskwarrior.org/)\n- **Text expansion:** [Espanso](https://espanso.org/)\n- **Backups:** [Restic](https://restic.net/) + [Rclone](https://rclone.org/)\n- **Email:** [Neomutt](https://neomutt.org/) (via [mutt-wizard](https://github.com/LukeSmithxyz/mutt-wizard))\n- **File syncing:** [git-annex](https://git-annex.branchable.com/)\n\n## Installation\n\nI manage my dotfiles using [Chezmoi](https://www.chezmoi.io/), which uses template logic to handle config differences between machines.\nIf you want something simpler that just symlinks things to `$HOME` for you, I highly recommend [GNU Stow](https://www.gnu.org/software/stow/).\n\nWith Chezmoi installed, running the following will clone this repo and move all the pieces into place:\n\n```shell\nchezmoi init --apply --ssh JoshMock\n```\n\n### Automatically installed dependencies\n\nThese dotfiles assume the presence of many dependencies that have to be installed from your OS's package manager.\nI'm currently experimenting with using Chezmoi to handle this, by maintaining [a file listing all packages](./home/.chezmoidata.yaml) I want installed by [`yay`](https://github.com/Jguer/yay), some of which are gated by feature flags (e.g. `desktop`, `work`, `mopidy`).\nThis is handled by [a Python script](./home/run_onchange_01-install-packages.tmpl) that runs whenever the list of packages or my feature flags in `~/.config/chezmoi/chezmoi.toml` changes.\n\nAn example `chezmoi.toml`:\n\n```toml\n[data]\ntaskwarrior = true\ndesktop = false\nwork = false\nmopidy = true\nemail = true\n```\n\nThis configuration would install all listed packages that either have no `features` set\u0026mdash;packages to be installed on every machine\u0026mdash;or whose features match one of the flags set to `true`.\n\nIf you are not running an Arch-based distribution with `yay` installed, this script will fail pretty quickly.\nEventually it would be cool to get it working with `apt` on Debian (for logging onto Raspberry Pis, Ubuntu servers, etc.).\n`brew` support for MacOS is unlikely unless a future employer requires me to use a Mac, or I get tired of all this fiddly Linux business and cave in to the Apple ecosystem.\n\n## License\n\nI can't license other people's submodules, obviously, but for anything that isn't already licensed, assume the [GPL license](https://www.gnu.org/licenses/gpl.html).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshmock%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoshmock%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshmock%2Fdotfiles/lists"}