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,28 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior (include minimal `init.vim` or `.vimrc`):
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Note** Omitting a minimal `init.vim`/`init.lua`/`.vimrc` will likely result in the issue being closed without explanation.
**Output from `:IlluminateDebug`**
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Additional context**
Add any other context about the problem here.

View File

@ -0,0 +1,30 @@
name: panvimdoc
on:
push:
branches:
- '*'
jobs:
docs:
runs-on: ubuntu-latest
name: pandoc to vimdoc
steps:
- uses: actions/checkout@v2
- name: illuminate
uses: kdheepak/panvimdoc@main
with:
vimdoc: illuminate
pandoc: "README.md"
toc: true
version: "NVIM v0.8.0"
- name: Check for Changes
id: changes
uses: UnicornGlobal/has-changes-action@v1.0.11
with:
path: 'doc/'
- uses: stefanzweifel/git-auto-commit-action@v4
if: steps.changes.outputs.has_changes == 'true'
with:
commit_message: 'Auto generate docs'
branch: ${{ github.head_ref }}