From a7aa1ead41cc1ad74b92c6f39f1bcb2a5751f3a4 Mon Sep 17 00:00:00 2001 From: Nargonath Date: Fri, 29 Dec 2023 19:46:09 +0400 Subject: [PATCH] :sparkles: Add highlight for float border fixes #1 --- lua/spaceduck.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/spaceduck.lua b/lua/spaceduck.lua index 5c7d8a2..ee3d0aa 100644 --- a/lua/spaceduck.lua +++ b/lua/spaceduck.lua @@ -281,6 +281,12 @@ local scheme = { Boolean = { fg = colors.yellow.hex, ctermfg = colors.yellow.cterm }, Character = { fg = colors.yellow.hex, ctermfg = colors.yellow.cterm }, Float = { fg = colors.yellow.hex, ctermfg = colors.yellow.cterm }, + FloatBorder = { + fg = colors.cream.hex, + ctermfg = colors.cream.cterm, + bg = colors.dark_grey.hex, + ctermbg = colors.dark_grey.cterm, + }, Number = { fg = colors.yellow.hex, ctermfg = colors.yellow.cterm }, Conditional = { fg = colors.green.hex, ctermfg = colors.green.cterm }, Repeat = { fg = colors.green.hex, ctermfg = colors.green.cterm },