From b9e4dae160bf9bc28d4ceb6d29a7e0134b107724 Mon Sep 17 00:00:00 2001 From: Chris Lasher Date: Mon, 21 Aug 2023 11:21:24 -0700 Subject: [PATCH] fix(nvim-window-picker): missing table keys (#569) --- lua/catppuccin/groups/integrations/window_picker.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/catppuccin/groups/integrations/window_picker.lua b/lua/catppuccin/groups/integrations/window_picker.lua index 4e61dee1..06af3e56 100644 --- a/lua/catppuccin/groups/integrations/window_picker.lua +++ b/lua/catppuccin/groups/integrations/window_picker.lua @@ -2,10 +2,10 @@ local M = {} function M.get() return { - WindowPickerStatusLine = { C.red, style = { "bold" } }, - WindowPickerStatusLineNC = { C.red, style = { "bold" } }, - WindowPickerWinBar = { C.red, style = { "bold" } }, - WindowPickerWinBarNC = { C.red, style = { "bold" } }, + WindowPickerStatusLine = { fg = C.red, style = { "bold" } }, + WindowPickerStatusLineNC = { fg = C.red, style = { "bold" } }, + WindowPickerWinBar = { fg = C.red, style = { "bold" } }, + WindowPickerWinBarNC = { fg = C.red, style = { "bold" } }, } end