Update colorscheme with less colors

This commit is contained in:
ant 2025-01-12 15:32:47 +01:00 committed by Antoine Vaure
parent b8b309fbe8
commit 21f229cff0
3 changed files with 138 additions and 15 deletions

14
lua/colors/normal.lua Normal file
View file

@ -0,0 +1,14 @@
local custom_highlights = function(C)
return {
HopNextKey = { bg = C.text, fg = C.base, style = { "bold", "underline" } },
HopNextKey1 = { bg = C.text, fg = C.base, style = { "bold" } },
HopNextKey2 = { bg = C.text, fg = C.base, style = { "bold", "italic" } },
DiagnosticUnderlineError = { style = { "undercurl" } },
DiagnosticUnderlineWarn = { style = { "undercurl" } },
DiagnosticUnderlineInfo = { style = { "undercurl" } },
DiagnosticUnderlineHint = { style = { "undercurl" } },
DiagnosticUnderlineOk = { style = { "undercurl" } },
}
end
return custom_highlights