From f67b886d65a029f12ffa298701fb8f1efd89295d Mon Sep 17 00:00:00 2001 From: Lopy <70210066+lopi-py@users.noreply.github.com> Date: Fri, 27 Dec 2024 06:33:10 -0500 Subject: [PATCH] fix: match fzf-lua highlights to telescope (#812) --- lua/catppuccin/groups/integrations/fzf.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lua/catppuccin/groups/integrations/fzf.lua b/lua/catppuccin/groups/integrations/fzf.lua index fda5a465..0a20625b 100644 --- a/lua/catppuccin/groups/integrations/fzf.lua +++ b/lua/catppuccin/groups/integrations/fzf.lua @@ -2,11 +2,14 @@ local M = {} function M.get() return { - FzfLuaNormal = { link = "NormalFloat" }, + -- FzfLuaNormal = { link = "NormalFloat" }, Respect fzf-lua's default float bg FzfLuaBorder = { link = "FloatBorder" }, - FzfLuaTitle = { link = "FloatTitle" }, + FzfLuaTitle = { link = "FloatBorder" }, FzfLuaHeaderBind = { fg = C.yellow }, FzfLuaHeaderText = { fg = C.peach }, + FzfLuaDirPart = { link = "NonText" }, + FzfLuaFzfMatch = { fg = C.blue }, + FzfLuaFzfPrompt = { fg = C.blue }, FzfLuaPathColNr = { fg = C.blue }, FzfLuaPathLineNr = { fg = C.green }, FzfLuaBufName = { fg = C.mauve },