A template repository for Neovim plugins.
Via gh:
$ gh repo create my-plugin -p ellisonleao/nvim-plugin-template
Via github web page:
Click on Use this template
- 100% lua
- Github actions to run tests and check for formatting errors (Stylua)
- tests busted + plenary.nvim
.
├── lua
│ └── module
│ └── init.lua
├── Makefile
├── plugin
│ └── module.lua
├── README.md
├── tests
│ ├── minimal_vim.vim
│ └── module
│ └── module_spec.lua
└── vendor
