Add styles for floating windows
This commit is contained in:
parent
d31ba7a31c
commit
7a09f88eb1
1 changed files with 7 additions and 3 deletions
|
@ -90,6 +90,10 @@ M.highlights = function()
|
||||||
Normal = { fg = fg, bg = bg }, -- normal text
|
Normal = { fg = fg, bg = bg }, -- normal text
|
||||||
NormalNC = { link = 'Normal' }, -- normal text in non-current windows
|
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
|
Comment = { fg = C.bg3, italic = true }, -- any comment
|
||||||
|
|
||||||
Constant = { fg = C.orange }, -- any constant
|
Constant = { fg = C.orange }, -- any constant
|
||||||
|
@ -492,10 +496,10 @@ M.highlights = function()
|
||||||
|
|
||||||
-- 'nvim-telescope/telescope.nvim'
|
-- 'nvim-telescope/telescope.nvim'
|
||||||
telescope = {
|
telescope = {
|
||||||
TelescopeBorder = { fg = C.gray },
|
TelescopeBorder = { link = 'FloatBorder' },
|
||||||
TelescopePromptBorder = { fg = C.fg0 },
|
TelescopePromptBorder = { fg = C.fg0 },
|
||||||
TelescopeTitle = { fg = C.blue, bold = true },
|
TelescopeTitle = { link = 'FloatTitle' },
|
||||||
TelescopePromptPrefix = { fg = C.blue },
|
TelescopePromptPrefix = { link = 'FloatTitle' },
|
||||||
TelescopePromptCounter = { fg = C.bg3 },
|
TelescopePromptCounter = { fg = C.bg3 },
|
||||||
TelescopeNormal = { fg = C.gray },
|
TelescopeNormal = { fg = C.gray },
|
||||||
TelescopeMatching = { fg = C.fg0 },
|
TelescopeMatching = { fg = C.fg0 },
|
||||||
|
|
Loading…
Add table
Reference in a new issue