{"id":37042878,"url":"https://github.com/DrKJeff16/nvim-plugin-boilerplate","last_synced_at":"2026-01-21T06:01:05.249Z","repository":{"id":331663044,"uuid":"1127524358","full_name":"DrKJeff16/nvim-plugin-boilerplate","owner":"DrKJeff16","description":"An annotated Neovim plugin template with pre-commit, StyLua and selene configs, GitHub actions and more.","archived":false,"fork":false,"pushed_at":"2026-01-19T07:08:39.000Z","size":102,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-19T15:54:51.475Z","etag":null,"topics":["neovim","neovim-lua","neovim-plugin","neovim-plugin-template","neovim-plugins","nvim-plugin","nvim-plugin-template","nvim-plugins"],"latest_commit_sha":null,"homepage":"https://codeberg.org/DrKJeff16/nvim-plugin-boilerplate","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/DrKJeff16.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-04T04:01:34.000Z","updated_at":"2026-01-19T07:08:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/DrKJeff16/nvim-plugin-boilerplate","commit_stats":null,"previous_names":["drkjeff16/nvim-plugin-boilerplate"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/DrKJeff16/nvim-plugin-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrKJeff16%2Fnvim-plugin-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrKJeff16%2Fnvim-plugin-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrKJeff16%2Fnvim-plugin-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrKJeff16%2Fnvim-plugin-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DrKJeff16","download_url":"https://codeload.github.com/DrKJeff16/nvim-plugin-boilerplate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrKJeff16%2Fnvim-plugin-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28628700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","neovim-lua","neovim-plugin","neovim-plugin-template","neovim-plugins","nvim-plugin","nvim-plugin-template","nvim-plugins"],"created_at":"2026-01-14T05:00:26.177Z","updated_at":"2026-01-21T06:01:05.239Z","avatar_url":"https://github.com/DrKJeff16.png","language":"Shell","funding_links":[],"categories":["External"],"sub_categories":["Plugin Template"],"readme":"# nvim-plugin-boilerplate [![Mentioned in Awesome Neovim](https://awesome.re/mentioned-badge.svg)](https://github.com/rockerBOO/awesome-neovim)\n\n[Codeberg Mirror](https://codeberg.org/DrKJeff16/nvim-plugin-boilerplate) | [GitHub Mirror](https://github.com/DrKJeff16/nvim-plugin-boilerplate)\n\n\u003e [!IMPORTANT]\n\u003e **This was NOT AI-generated!**\n\nAn annotated Neovim plugin template with `pre-commit`, StyLua and `selene` configs,\nwith some useful GitHub actions included.\n\n---\n\n## Features\n\n- A dynamic install script [`generate.sh`](https://github.com/DrKJeff16/nvim-plugin-boilerplate/blob/main/generate.sh) (see [Setup](#setup))\n- Plenty of utilities you can use with your plugin ([`util.lua`](https://github.com/DrKJeff16/nvim-plugin-boilerplate/blob/main/lua/my-plugin/util.lua))\n- Pre-documented Lua code\n- Optional template file for `:checkhealth` ([`health.lua`](https://github.com/DrKJeff16/nvim-plugin-boilerplate/blob/main/lua/my-plugin/health.lua))\n- Optional Python 3 component ([`rplugin/python3/my-plugin.py`](https://github.com/DrKJeff16/nvim-plugin-boilerplate/blob/main/rplugin/python3/my-plugin.py), DOCUMENTED)\n- Optional unit testing using `busted` ([`spec/`](https://github.com/DrKJeff16/nvim-plugin-boilerplate/blob/main/spec/))\n- CI utilities supported:\n  - `pre-commit` config ([`.pre-commit-config.yaml`](./.pre-commit-config.yaml))\n  - StyLua config ([`stylua.toml`](./stylua.toml))\n  - `selene` config ([`selene.toml`](./selene.toml), [`vim.yml`](./vim.yml))\n  - A bunch of useful GitHub Actions (see [`.github/workflows`](./.github/workflows))\n\n---\n\n## Setup\n\n\u003e [!NOTE]\n\u003e The script is subject to breaking changes in the future.\n\u003e Therefore please review the instructions below.\n\nTo configure the template simply run [`generate.sh`](https://github.com/DrKJeff16/nvim-plugin-boilerplate/blob/main/generate.sh) in your terminal:\n\n```bash\n./generate.sh # Has to be run in the repository root!\n```\n\nIt'll invoke many prompts so that you may structure your plugin as desired.\n\n**The script will delete itself after a successful setup!**\n\n---\n\n## Structure\n\nThis template includes the following relevant files:\n\n```\ngenerate.sh  \u003c==  Bash script plugin template generator\nstylua.toml  \u003c==  Config file for StyLua\nselene.toml  \u003c==  Config file for selene\nvim.yml  \u003c==  Std file for selene\n.busted  \u003c==  Config file for busted\nspec/  \u003c==  Contains all the unit tests\n└── my-plugin_spec.lua  \u003c==  NOTE: All test files must end up with `*_spec.lua`!\nlua/\n├── my-plugin.lua  \u003c==  The main module\n├── my-plugin/  \u003c==  Folder containing all the plugin utils\n│   ├── config.lua  \u003c==  Configuration module. Contains your main `setup()` function\n│   ├── health.lua  \u003c==  Hooks for `:checkhealth` (OPTIONAL)\n└   └── util.lua  \u003c==  Utilities for the plugin\nrplugin/\n├── python3/  \u003c==  Folder containing the Python 3 components\n└   └── my-plugin.py  \u003c==  The Python 3 component\n.github/\n├── workflows/  \u003c==  Folder containing all the GitHub Actions\n│   ├── selene.yml  \u003c==  Workflow for selene\n└   └── stylua.yml  \u003c==  Workflow for StyLua\n```\n\n---\n\n## License\n\n[MIT](./LICENSE)\n\n\u003c!-- vim: set ts=2 sts=2 sw=2 et ai si sta: --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDrKJeff16%2Fnvim-plugin-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDrKJeff16%2Fnvim-plugin-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDrKJeff16%2Fnvim-plugin-boilerplate/lists"}