{"id":13898603,"url":"https://github.com/darthfork/dotfiles","last_synced_at":"2025-07-17T15:34:03.255Z","repository":{"id":41425236,"uuid":"136825071","full_name":"darthfork/dotfiles","owner":"darthfork","description":"Dotfiles","archived":false,"fork":false,"pushed_at":"2025-07-13T02:54:47.000Z","size":306,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-13T04:38:43.843Z","etag":null,"topics":["alacritty","dotfiles","homebrew","neovim","tmux","vim","vscode","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/darthfork.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-06-10T16:22:18.000Z","updated_at":"2025-07-13T02:54:51.000Z","dependencies_parsed_at":"2024-05-09T22:26:15.618Z","dependency_job_id":"1ea1fd70-4ac6-4d79-ae38-8eb0a8445193","html_url":"https://github.com/darthfork/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/darthfork/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darthfork%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darthfork%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darthfork%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darthfork%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darthfork","download_url":"https://codeload.github.com/darthfork/dotfiles/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darthfork%2Fdotfiles/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265622938,"owners_count":23800068,"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":["alacritty","dotfiles","homebrew","neovim","tmux","vim","vscode","zsh"],"created_at":"2024-08-06T18:04:22.308Z","updated_at":"2025-07-17T15:34:03.249Z","avatar_url":"https://github.com/darthfork.png","language":"Shell","funding_links":[],"categories":["Shell"],"sub_categories":[],"readme":"![Dotfiles](https://dotfiles.github.io/images/dotfiles-logo.png \"Dotfiles\")\n\n# Dotfiles\n\nVim/NeoVim, tmux, shell config files and utility scripts for macOS and Linux.\n\n## Installation\n\nTo install the dotfiles, utility scripts and packages run the following commands:\n\n```bash\n./install.sh\n```\n\n## Utility Scripts and Kubernetes Plugins\n\n- [**kubectl-shell**](.local/bin/kubectl-shell)\n  - Description: kubectl plugin to open a shell in a pod in a Kubernetes cluster\n  - Usage: `kubectl shell \u003cpod-name\u003e`\n- [**kubectl-dorker**](.local/bin/kubectl-dorker)\n  - Description: kubectl plugin to install a pod with a shell in a Kubernetes cluster for debugging cluster issues\n  - Usage: `kubectl dorker {up|down}`\n- [**kubectl-kind**](.local/bin/kubectl-kind)\n  - Description: kubectl plugin to create a Kubernetes cluster using kind\n  - Usage: `kubectl kind`\n- [**kubectl-setns**](.local/bin/kubectl-setns)\n  - Description: kubectl plugin to set the namespace of the current context\n  - Usage: `kubectl setns \u003cnamespace\u003e`\n- [**dorker**](.local/bin/dorker)\n  - Description: Utility script to create a container with aws/helm/kubectl and other utilities for debugging\n  - Usage: `dorker`\n- [**mfa**](.local/bin/mfa)\n  - Description: Utility script to generate 2FA tokens from yubikey\n  - Usage: `mfa \u003cservice-name\u003e`\n- [**codemux**](.local/bin/codemux)\n  - Description: Utility script to open a tmux session with vscode specific layout and configurations\n  - Usage: `codemux \u003cworkspace-name\u003e`. This launches a vscode session named `\u003cworkspace-name\u003e`. To use with vscode add the following to your vscode settings.json\n\n    ```json\n      \"terminal.integrated.profiles.osx\": {\n          \"tmux\": {\n              \"path\": \"codemux\",\n              \"args\": [\n                  \"${workspaceFolderBasename}\"\n              ],\n              \"icon\": \"terminal-tmux\"\n          }\n      }\n    ```\n\n## Enable completion for zsh\n\n**autoload setting** (pre-requisite for enabling completion)\n\n```zsh\nautoload -U +X compinit \u0026\u0026 compinit\n```\n\n**kubectl**\n\n```zsh\nsource \u003c(kubectl completion zsh)\n```\n\n**aws**\n\n```zsh\ncomplete -C '$(command -v aws_completer)' aws\n```\n\n**helm**\n\n```zsh\nsource \u003c(helm completion zsh)\n```\n\n## Repo Structure\n\n```bash\n.\n├── .config\n│   ├── nvim\n│   │   └── init.lua\n│   ├── ripgrep\n│   │   └── config\n│   ├── tmux\n│   │   ├── tmux.conf\n│   │   └── vscode.conf\n│   ├── utils\n│   │   ├── agnoster.zsh.patch\n│   │   ├── compose.yaml\n│   │   └── kubernetes.yaml\n│   └── yamllint\n│       └── config\n├── .gitconfig\n├── .gitignore\n├── .local\n│   └── bin\n│       ├── codemux\n│       ├── dorker\n│       ├── kubectl-dorker\n│       ├── kubectl-kind\n│       ├── kubectl-setns\n│       ├── kubectl-shell\n│       ├── mfa\n│       ├── start_ssh_agent.sh\n│       ├── tmux-battery-info\n│       ├── tmux-spotify-info\n│       └── tmux-system-info\n├── .vim\n│   └── vimrc\n├── .zshrc\n├── Brewfile\n├── LICENSE\n├── README.md\n└── install.sh\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarthfork%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarthfork%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarthfork%2Fdotfiles/lists"}