feat: add AvantePromptInput highlight support

Add highlight support for avante.nvim prompt input components:
- AvantePromptInput: Uses panel background with readable text foreground
- AvantePromptInputBorder: Uses standard border styling

This follows the established pattern for completion menu styling
similar to CMP and Blink prompt inputs.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Antoine Bertin 2025-07-18 22:29:42 +02:00
commit 30a840aef5
No known key found for this signature in database
GPG key ID: 014AC7C9F19921FA

View file

@ -978,6 +978,8 @@ local function set_highlights()
AvanteReversedSubtitle = { fg = palette.foam },
AvanteThirdTitle = { fg = palette.highlight_med, bg = palette.iris },
AvanteReversedThirdTitle = { fg = palette.iris },
AvantePromptInput = { bg = groups.panel, fg = palette.text },
AvantePromptInputBorder = groups.border,
-- Saghen/blink.cmp
BlinkCmpDoc = { bg = palette.highlight_low },