fix(nvim): set fallback color for heirline mode

This commit is contained in:
Price Hiller 2024-06-26 09:39:22 -05:00
parent 946db03a5e
commit ea174818a2
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -85,7 +85,7 @@ return {
},
mode_color = function(self)
local mode = conditions.is_active() and vim.api.nvim_get_mode().mode or "n"
return self.mode_colors[mode]
return self.mode_colors[mode] or colors.crystalBlue
end,
},
{