├── .github └── ISSUE_TEMPLATE │ └── plugin-request.md ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE/plugin-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Plugin Request 3 | about: Suggest a Neovim plugin you'd like to see written using Lua 4 | title: '' 5 | labels: help wanted, idea 6 | assignees: '' 7 | 8 | --- 9 | 10 | **What?** 11 | Summarize the plugin you'd like to see exist. In a few sentences, what's your idea? 12 | 13 | **Why?** 14 | What should this plugin provide? What problems does it solve? 15 | 16 | **Potential existing implementations:** 17 | Are there any existing plugins (Lua, Vimscript, or remote) that come close to your idea? 18 | 19 | **Potential pitfalls*:* 20 | Are there any challenges you're aware of to making the plugin you're proposing? 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Neovim Lua 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wishlist 2 | A public catalogue of Lua plugins Neovim users would like to see exist. See the [projects page](https://github.com/nvim-lua/wishlist/projects/1) for the full list! 3 | 4 | ## Contributing 5 | If you have an idea for a Lua plugin, or know of an existing plugin implementing one of the ideas listed here, please make an issue! 6 | 7 | Plugin ideas are catalogued at the [projects page](https://github.com/nvim-lua/wishlist/projects/1) 8 | for this repo. 9 | 10 | If you also want one of the plugins listed here to exist, please consider starting an 11 | implementation! You can add a link to your work-in-progress to the relevant idea's section via a PR 12 | (which will also help track which plugins are being worked on on the projects page). 13 | 14 | A wish becomes "granted" when there exists a feature-complete, stable plugin implementing the wish's 15 | idea. See below for a list of granted wishes! 16 | 17 | # Granted Wishes 18 | ## Snippets 19 | [norcalli/snippets.nvim](https://github.com/norcalli/snippets.nvim) (grants [#2](https://github.com/nvim-lua/wishlist/issues/2)). 20 | 21 | ## LSP Actions Menu 22 | [RishabhRD/nvim-lsputils](https://github.com/RishabhRD/nvim-lsputils) (grants [#8](https://github.com/nvim-lua/wishlist/issues/8)). 23 | --------------------------------------------------------------------------------