| name | nvim-plugin |
| description | Guidelines for Neovim plugin development. Use when working on Neovim plugins, Lua files for Neovim, or vim plugin repositories. |
Neovim Plugin Development
Instructions
When working on Neovim plugins:
- Documentation: Always update both the README.md and the vimdocs after making code changes
- Commits: Follow proper open-source commit message standards
- Testing: Run tests with
nvim -u NONE --headless -S run_tests.lua(only if there were code changes)