From 84a88f68e1351c701f5fb329ddab66023219d298 Mon Sep 17 00:00:00 2001 From: mortezadadgar Date: Sun, 7 Jan 2024 22:44:25 +0330 Subject: [PATCH] Add support for `fzf-lua` (#194) In a attempt make it more like telescope colors. --- lua/rose-pine/theme.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index c702531..d5e4faf 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -492,6 +492,15 @@ function M._load(options) ['TelescopeSelectionCaret'] = { fg = p.rose, bg = p.overlay }, ['TelescopeTitle'] = { fg = p.subtle }, + -- ibhagwan/fzf-lua + ['FzfLuaNormal'] = { fg = p.subtle, bg = float_background }, + ['FzfLuaTitle'] = { fg = p.subtle }, + ['FzfLuaBorder'] = { fg = groups.border, bg = float_background }, + ['FzfLuaHeaderText'] = { fg = p.love }, + ['FzfLuaHeaderBind'] = { fg = p.rose }, + ['FzfLuaBufFlagCur'] = { fg = p.subtle }, + ['FzfLuaBufFlagAlt'] = { fg = p.subtle }, + -- rcarriga/nvim-notify ['NotifyINFOBorder'] = { fg = p.foam }, ['NotifyINFOTitle'] = { link = 'NotifyINFOBorder' },