feat: add telescope integration #76
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push to Luarocks | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
pull_request: # Tests a local luarocks install without publishing on PRs | |
workflow_dispatch: # Allow manual trigger | |
jobs: | |
luarocks-upload: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: LuaRocks Upload | |
uses: nvim-neorocks/luarocks-tag-release@v5 | |
env: | |
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} | |
with: | |
labels: neovim | |
summary: Extensible UI for Neovim notifications and LSP progress messages. | |
detailed_description: | | |
Fidget is an unintrusive window in the corner of your editor that manages its own lifetime. | |
Its goals are: | |
- to provide a UI for Neovim's $/progress handler | |
- to provide a configurable vim.notify() backend | |
- to support basic ASCII animations (Fidget spinners!) to indicate signs of life | |
- to be easy to configure, sane to maintain, and fun to hack on | |
There's only so much information one can stash into the status line. | |
Besides, who doesn't love a little bit of terminal eye candy, as a treat? |