Add styles for floating windows

This commit is contained in:
Fernando Schauenburg 2023-08-06 18:05:50 +02:00
parent d31ba7a31c
commit 7a09f88eb1

View file

@ -90,6 +90,10 @@ M.highlights = function()
Normal = { fg = fg, bg = bg }, -- normal text
NormalNC = { link = 'Normal' }, -- normal text in non-current windows
NormalFloat = { link = 'Normal' }, -- floating windows
FloatBorder = { fg = C.gray },
FloatTitle = { fg = C.blue },
Comment = { fg = C.bg3, italic = true }, -- any comment
Constant = { fg = C.orange }, -- any constant
@ -492,10 +496,10 @@ M.highlights = function()
-- 'nvim-telescope/telescope.nvim'
telescope = {
TelescopeBorder = { fg = C.gray },
TelescopeBorder = { link = 'FloatBorder' },
TelescopePromptBorder = { fg = C.fg0 },
TelescopeTitle = { fg = C.blue, bold = true },
TelescopePromptPrefix = { fg = C.blue },
TelescopeTitle = { link = 'FloatTitle' },
TelescopePromptPrefix = { link = 'FloatTitle' },
TelescopePromptCounter = { fg = C.bg3 },
TelescopeNormal = { fg = C.gray },
TelescopeMatching = { fg = C.fg0 },