From 2e845b946b3ed186d2f8678aaca03dd88dc1aceb Mon Sep 17 00:00:00 2001 From: Shaun Clayton Date: Tue, 23 Jul 2024 11:08:27 -0400 Subject: [PATCH 1/2] fix: invisible text in selection in fzf-lua --- lua/rose-pine.lua | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lua/rose-pine.lua b/lua/rose-pine.lua index bf5ef79..85c79d9 100644 --- a/lua/rose-pine.lua +++ b/lua/rose-pine.lua @@ -667,13 +667,14 @@ local function set_highlights() TelescopeTitle = { fg = palette.foam, bold = styles.bold }, -- ibhagwan/fzf-lua - FzfLuaNormal = { link = "NormalFloat" }, - FzfLuaTitle = { fg = palette.foam, bold = styles.bold }, FzfLuaBorder = make_border(), - FzfLuaHeaderText = { fg = palette.love }, - FzfLuaHeaderBind = { fg = palette.rose }, - FzfLuaBufFlagCur = { fg = palette.subtle }, FzfLuaBufFlagAlt = { fg = palette.subtle }, + FzfLuaBufFlagCur = { fg = palette.subtle }, + FzfLuaCursorLine = { fg = palette.text, bg = palette.overlay }, + FzfLuaHeaderBind = { fg = palette.rose }, + FzfLuaHeaderText = { fg = palette.love }, + FzfLuaNormal = { fg = palette.text }, + FzfLuaTitle = { fg = palette.foam, bg = palette.surface, bold = styles.bold }, -- rcarriga/nvim-notify NotifyDEBUGBorder = make_border(), From d47ad28c5a4da838de18df1774a6be822ae8fb35 Mon Sep 17 00:00:00 2001 From: Shaun Clayton Date: Tue, 23 Jul 2024 11:15:07 -0400 Subject: [PATCH 2/2] fix: correct bg color for FzfLuaNormal --- lua/rose-pine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/rose-pine.lua b/lua/rose-pine.lua index 85c79d9..26ce603 100644 --- a/lua/rose-pine.lua +++ b/lua/rose-pine.lua @@ -673,7 +673,7 @@ local function set_highlights() FzfLuaCursorLine = { fg = palette.text, bg = palette.overlay }, FzfLuaHeaderBind = { fg = palette.rose }, FzfLuaHeaderText = { fg = palette.love }, - FzfLuaNormal = { fg = palette.text }, + FzfLuaNormal = { fg = palette.text, bg = palette.surface }, FzfLuaTitle = { fg = palette.foam, bg = palette.surface, bold = styles.bold }, -- rcarriga/nvim-notify