1

Regenerate nvim config

This commit is contained in:
2024-06-02 03:29:20 +02:00
parent 75eea0c030
commit ef2e28883d
5576 changed files with 604886 additions and 503 deletions

View File

@ -0,0 +1,65 @@
name: Bug Report
description: File a bug report
labels: [bug]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: input
attributes:
label: 'Neovim version (nvim -v | head -n1)'
placeholder: 'NVIM v0.7.0'
validations:
required: true
- type: input
attributes:
label: 'Operating system/version'
placeholder: 'macOS 11.5'
validations:
required: true
- type: textarea
attributes:
label: 'How to reproduce the issue'
description: |
How do you trigger this bug? Please walk us through it step by step.
Log path: `~/.cache/nvim/ufo.log`
value: |
`cat mini.lua`
```lua
-- Use Vim packages install the plugin, also work with some plugins manager such as packer.nvim
vim.o.packpath = '~/.local/share/nvim/site'
vim.cmd('packadd promise-async')
vim.cmd('packadd nvim-ufo')
-- Setting
vim.o.foldcolumn = '1'
vim.o.foldlevel = 99
vim.o.foldlevelstart = -1
vim.o.foldenable = true
local ufo = require('ufo')
ufo.setup()
vim.keymap.set('n', 'zR', ufo.openAllFolds)
vim.keymap.set('n', 'zM', ufo.closeAllFolds)
```
`nvim --clean +'so mini.lua'`
1.
2.
3.
...
validations:
required: true
- type: textarea
attributes:
label: 'Expected behavior'
description: 'Describe the behavior you expect. May include logs, images, or videos.'
validations:
required: true
- type: textarea
attributes:
label: 'Actual behavior'
validations:
required: true

View File

@ -0,0 +1 @@
blank_issues_enabled: false

View File

@ -0,0 +1,23 @@
name: Feature request
description: Request an enhancement for nvim-ufo
labels: [enhancement]
body:
- type: markdown
attributes:
value: |
Before requesting: search [existing issues](https://github.com/kevinhwang91/nvim-ufo/labels/enhancement).
- type: textarea
attributes:
label: "Feature description"
validations:
required: true
- type: textarea
attributes:
label: "Describe the solution you'd like"
validations:
required: true
- type: textarea
attributes:
label: "Additional context"
validations:
required: false

View File

@ -0,0 +1,31 @@
---
name: Push to Luarocks
on:
push:
tags:
- '*'
release:
types:
- created
tags:
- '*'
workflow_dispatch:
jobs:
luarocks-upload:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Required to count the commits
- name: Get Version
run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV
- name: LuaRocks Upload
uses: nvim-neorocks/luarocks-tag-release@v5
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
with:
version: ${{ env.LUAROCKS_VERSION }}
dependencies: |
promise-async