feat: add user event and lualine spinner #34
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: LuaRocks release | |
on: | |
push: | |
tags: # Will upload to luarocks.org when a tag is pushed | |
- "*" | |
pull_request: # Will test a local install without uploading to luarocks.org | |
jobs: | |
luarocks-release: | |
runs-on: ubuntu-latest | |
name: LuaRocks upload | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: LuaRocks Upload | |
uses: nvim-neorocks/luarocks-tag-release@v7 | |
env: | |
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} | |
with: | |
dependencies: | | |
plenary.nvim | |
labels: | | |
neovim | |
minuet-ai.nvim | |
detailed_description: | | |
- AI-powered code completion with dual modes: | |
- Specialized prompts and various enhancements for chat-based LLMs on code completion tasks. | |
- Fill-in-the-middle (FIM) completion for compatible models (DeepSeek, Codestral, Qwen, and others). | |
- Support for multiple AI providers (OpenAI, Claude, Gemini, Codestral, Ollama, and OpenAI-compatible services). | |
- Customizable configuration options. | |
- Streaming support to enable completion delivery even with slower LLMs. | |
- Support `nvim-cmp`, `blink-cmp`, `virtual text`, `built-in completion` frontend. | |
- Act as an **in-process LSP** server to provide completions (opt-in feature). |