From 70ba2e1e6f7ab0f875e2b09b997557c40368561d Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 30 Mar 2023 13:57:36 -0500 Subject: [PATCH] feat(nvim): set no bg color for FloatTitle hl --- .../primary/config/lua/plugins/configs/kanagawa.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dots/.nvim-environments/primary/config/lua/plugins/configs/kanagawa.lua b/dots/.nvim-environments/primary/config/lua/plugins/configs/kanagawa.lua index f48350b2..75f0889a 100644 --- a/dots/.nvim-environments/primary/config/lua/plugins/configs/kanagawa.lua +++ b/dots/.nvim-environments/primary/config/lua/plugins/configs/kanagawa.lua @@ -123,7 +123,8 @@ require("kanagawa").setup({ SmoothCursorTrailMedium = { fg = colors.oniViolet }, SmoothCursorTrailSmall = { fg = colors.springBlue }, SmoothCursorTrailXSmall = { fg = colors.waveAqua2 }, - TreesitterContext = { bg = colors.sumiInk0 } + TreesitterContext = { bg = colors.sumiInk0 }, + FloatTitle = { bg = "NONE" } } return overrides