From 7e7eff411fedada2b6cceb78059ed8a4a26d03ba Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Sun, 12 Jul 2026 10:31:32 +0200 Subject: [PATCH] Fix Neovim startup crash from undefined `deepblue` highlight color (#72) Closes #71. Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> --- 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