Skip to content

Commit

Permalink
fix(nvim-window-picker): missing table keys (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
gotgenes authored Aug 21, 2023
1 parent e2d6ce2 commit b9e4dae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/catppuccin/groups/integrations/window_picker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b9e4dae

Please sign in to comment.