diff options
| -rw-r--r-- | .github/workflows/panvimdoc.yml | 22 | ||||
| -rw-r--r-- | .github/workflows/stylua.yml | 14 | ||||
| -rw-r--r-- | doc/pets.nvim.txt | 0 | ||||
| -rw-r--r-- | docs/pets.txt | 16 |
4 files changed, 36 insertions, 16 deletions
diff --git a/.github/workflows/panvimdoc.yml b/.github/workflows/panvimdoc.yml new file mode 100644 index 0000000..231a303 --- /dev/null +++ b/.github/workflows/panvimdoc.yml @@ -0,0 +1,22 @@ +name: panvimdoc + +on: [push] + +jobs: + docs: + runs-on: ubuntu-latest + permissions: + contents: write + name: pandoc to vimdoc + steps: + - uses: actions/checkout@v2 + - name: panvimdoc + uses: kdheepak/panvimdoc@main + with: + vimdoc: pets.nvim + - uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: "docs(help): auto generate docs" + commit_user_name: "github-actions[bot]" + commit_user_email: "github-actions[bot]@users.noreply.github.com" + commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>" diff --git a/.github/workflows/stylua.yml b/.github/workflows/stylua.yml new file mode 100644 index 0000000..be15dc6 --- /dev/null +++ b/.github/workflows/stylua.yml @@ -0,0 +1,14 @@ +name: stylua + +on: [push] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Stylua + uses: JohnnyMorganz/stylua-action@v1.1.2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --check . diff --git a/doc/pets.nvim.txt b/doc/pets.nvim.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/doc/pets.nvim.txt diff --git a/docs/pets.txt b/docs/pets.txt deleted file mode 100644 index 0ce527a..0000000 --- a/docs/pets.txt +++ /dev/null @@ -1,16 +0,0 @@ -================================================================================ - *pets.nvim* - -pets.nvim is a Plugin that recreates the funcionality provided by vscode-pets. -This plugin is completely useless and has no real purpose but it's fun. -It uses https://github.com/edluffy/hologram.nvim to display images in the -terminal, which for now only supports the kitty terminal. - -To find out more: -https://github.com/giusgad/pets.nvim - - :h AlphaHelloWorld - -PetsShow *PetsShow* - Starts displaying the cute pet -================================================================================ |