|
| 1 | +name: LazyDev Bug (Neovim) |
| 2 | +description: Is there anything wrong with the Neovim plugin? Tell us! |
| 3 | +title: "[NVIM]: <TITLE>" |
| 4 | +labels: ["bug", "important"] |
| 5 | +assignees: |
| 6 | + - DrKJeff16 |
| 7 | + |
| 8 | +body: |
| 9 | + - type: checkboxes |
| 10 | + attributes: |
| 11 | + label: Before we begin... |
| 12 | + description: "Make sure to read every checkbox and answer truthfully:" |
| 13 | + options: |
| 14 | + - label: I have checked for existing issues related to this one, whether open or closed |
| 15 | + required: true |
| 16 | + - label: I have checked for existing PRs and none address this, whether open or closed |
| 17 | + required: true |
| 18 | + - label: I have read the WezTerm Lua Reference and can confirm nothing should be wrong |
| 19 | + required: true |
| 20 | + - label: I have read the `lazydev.nvim` docs and my plugin manager's, respectively |
| 21 | + required: true |
| 22 | + - type: input |
| 23 | + attributes: |
| 24 | + label: "What version of Neovim are you using? (`nvim -v`)" |
| 25 | + placeholder: NVIM v0.12.0-dev-918+g1240d29f8f |
| 26 | + validations: |
| 27 | + required: true |
| 28 | + - type: input |
| 29 | + attributes: |
| 30 | + label: "Operating system and, if possible, what version?" |
| 31 | + placeholder: Arch Linux 6.15.6-arch1-1 |
| 32 | + validations: |
| 33 | + required: true |
| 34 | + - type: textarea |
| 35 | + attributes: |
| 36 | + label: Describe the issue |
| 37 | + description: Write down what's wrong, as detailed as you can. Avoid irrelevant info |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + - type: textarea |
| 41 | + attributes: |
| 42 | + label: Expected Behavior |
| 43 | + description: Describe what were you expecting to happen |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + - type: textarea |
| 47 | + attributes: |
| 48 | + label: Steps To Reproduce |
| 49 | + description: Steps to reproduce the behavior |
| 50 | + placeholder: | |
| 51 | + 1. |
| 52 | + 2. |
| 53 | + 3. |
| 54 | + validations: |
| 55 | + required: true |
| 56 | + - type: textarea |
| 57 | + attributes: |
| 58 | + label: How did you setup the plugin? |
| 59 | + description: Paste the relevant code snippet of how you configured this plugin |
| 60 | + value: | |
| 61 | + require('lazy').setup({ |
| 62 | + spec = { |
| 63 | + { |
| 64 | + 'folke/lazydev.nvim', |
| 65 | + ft = 'lua', |
| 66 | + dependencies = { |
| 67 | + { 'justinsgithub/wezterm-types', lazy = true }, |
| 68 | + }, |
| 69 | + opts = { |
| 70 | + library = { |
| 71 | + -- Other library configs... |
| 72 | + { path = 'wezterm-types', mods = { 'wezterm' } }, |
| 73 | + }, |
| 74 | + }, |
| 75 | + }, |
| 76 | + }, |
| 77 | + }) |
| 78 | + render: lua |
| 79 | + validations: |
| 80 | + required: true |
| 81 | + - type: textarea |
| 82 | + attributes: |
| 83 | + label: Additional Info and/or Screenshots |
| 84 | + description: If there's more info you could tell, please do. Screenshots too, if applicable |
| 85 | + validations: |
| 86 | + required: false |
0 commit comments