mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 11:24:07 +00:00
13 lines
299 B
Lua
13 lines
299 B
Lua
-- Modify the color palette for the default theme
|
|
return function(hl)
|
|
local C = require "default_theme.colors"
|
|
|
|
hl.Normal = { fg = C.fg, bg = C.bg }
|
|
hl.DiagnosticError.bold = true
|
|
hl.DiagnosticHint.bold = true
|
|
hl.DiagnosticInfo.bold = true
|
|
hl.DiagnosticWarn.bold = true
|
|
|
|
return hl
|
|
end
|