From 61b90517df6429fd7efdfd6a83e4fbcd405b1dc8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 12 Jul 2026 08:25:04 +0000 Subject: [PATCH] fix: replace undefined deepblue color key in Neovim Float highlight --- colors/gotham.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/gotham.vim b/colors/gotham.vim index acd425b..4344538 100644 --- a/colors/gotham.vim +++ b/colors/gotham.vim @@ -276,7 +276,7 @@ call s:Col('NeomakeError', 'red') call s:Col('EndOfBuffer', 'base1') if has('nvim') - call s:Col('Float', 'cyan', 'deepblue') + call s:Col('Float', 'cyan', 'base2') call s:Col('NormalFloat', 'base7', 'base0') call s:Col('FloatBorder', 'base5', 'base0') endif