Update colorscheme with less colors
This commit is contained in:
parent
b8b309fbe8
commit
21f229cff0
3 changed files with 138 additions and 15 deletions
14
lua/colors/normal.lua
Normal file
14
lua/colors/normal.lua
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue