From 30a840aef5f1d7458e11697510dcef890fd74ecc Mon Sep 17 00:00:00 2001 From: Antoine Bertin Date: Fri, 18 Jul 2025 22:29:42 +0200 Subject: [PATCH] feat: add AvantePromptInput highlight support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- lua/rose-pine.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/rose-pine.lua b/lua/rose-pine.lua index 571d336..fc514b1 100644 --- a/lua/rose-pine.lua +++ b/lua/rose-pine.lua @@ -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 },