{"id":22013199,"url":"https://github.com/fresh2dev/dotfiles","last_synced_at":"2025-10-25T04:20:23.006Z","repository":{"id":264592026,"uuid":"806009321","full_name":"fresh2dev/dotfiles","owner":"fresh2dev","description":"My dotfiles.","archived":false,"fork":false,"pushed_at":"2025-02-07T04:12:06.000Z","size":4522,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-05T09:10:18.738Z","etag":null,"topics":["neovim-plugin","vim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fresh2dev.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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-05-26T05:33:40.000Z","updated_at":"2025-07-22T19:37:05.000Z","dependencies_parsed_at":"2025-02-07T05:19:54.096Z","dependency_job_id":"8c88f024-ddc6-4c3b-9673-dcbdd11173a1","html_url":"https://github.com/fresh2dev/dotfiles","commit_stats":null,"previous_names":["fresh2dev/dotfiles"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fresh2dev/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fresh2dev%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fresh2dev%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fresh2dev%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fresh2dev%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fresh2dev","download_url":"https://codeload.github.com/fresh2dev/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fresh2dev%2Fdotfiles/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270149345,"owners_count":24535728,"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-08-12T02:00:09.011Z","response_time":80,"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":["neovim-plugin","vim-plugin"],"created_at":"2024-11-30T03:18:02.018Z","updated_at":"2025-10-25T04:20:23.001Z","avatar_url":"https://github.com/fresh2dev.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dotfiles\n\nThis is my personal collection of dotfiles. It contains curated configs for `vim`, `neovim`, `zsh`, `git`, `zellij`, and more. I primarily focus on Kubernetes and Python development on a Linux workstation (Debian-based distros and Fedora Silverblue).\n\nI am proud of the dotfiles themselves, and the method I use to deploy them.\n\nThe project tree, explained:\n\n```tree\n.\n├── deploys/\n│   ├── collections/  // Contains logic used to setup collections of components.\n│   │   ├── all.py\n│   │   ├── server.py\n│   │   └── terminal.py\n│   ├── components/   // Contains logic used to setup specific components.\n│   │   ├── alacritty.py\n│   │   ├── ansible.py\n│   │   ├── atuin.py\n│   │   ├── bash.py\n│   │   ├── docker.py\n│   │   ├── git.py\n│   │   ├── vim.py\n│   │   ├── zellij.py\n│   │   ├── zsh.py\n│   │   └── ...\n│   └── utils/     // Contains functions used in `pyinfra` deploy scripts.\n│       └── ...\n├── home/          // Public configs live here.\n│   └── ...\n├── home-secrets/  // Private configs live here.\n│   └── ...\n└── scripts/       // Here be undocumented dragons (namely, install scripts).\n│   └── ...\n```\n\nMy dotfiles deployment method introduces the concept of \"components\" and \"collections\". *Components* are the building blocks for *Collections.* *Components* are configs for specific programs (`zsh`, `vim`, etc.), where *Collections* are independent, whole sets of configurations (\"all\", \"terminal\"). You can confidently apply entire *collections*, but if you selectively apply only specific *components*, you may run into issues with missing dependencies.\n\nYou can apply them to your local workstation, or to a remote server.\n\nWhen applying to the local workstation, configs from the local `./home/` directory are ***symlinked*** to your `$HOME` directory.\n\nWhen applying to a remote workstation over SSH, configs from the local `./home/` directory are ***mirrored*** to the `$HOME` directory of the remote user.\n\n\u003e Note: this repo contains configuration files (\"dotiles\") for various programs. It does not take care of installing the programs -- only the configuration files.\n\nThe deployment mechanism is powered by [pyinfra](https://github.com/pyinfra-dev/pyinfra).\n\n\u003e For managing my dotfiles, I tried each of shell scripts, ansible, and dotbot before settling on *pyinfra*. I am most happy with pyinfra.\n\nInstall `pyinfra` with [`pipx`](https://github.com/pypa/pipx):\n\n```sh\n$ pipx install pyinfra\n```\n\nApply configs to the local workstation:\n\n```sh\n# Apply Collections:\n$ pyinfra @local deploys/collections/all.py\n$ pyinfra @local deploys/collections/terminal.py\n\n# Apply Components:\n$ pyinfra @local deploys/components/vim.py\n```\n\nOr apply to a remote SSH server:\n\n```sh\n$ pyinfra @ssh/192.168.1.123 --user \u003cusername \u003edeploys/collections/server.py\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffresh2dev%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffresh2dev%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffresh2dev%2Fdotfiles/lists"}