Minor changes to tokyodark nvim theme (visual highlight, remove italics)

This commit is contained in:
2025-11-18 18:47:35 -06:00
parent 56557f4cf0
commit ae1166a463

View File

@@ -4,11 +4,20 @@ return {
lazy = false,
priority = 1000,
opts = {
custom_highlights = function(highlights, _palette)
custom_highlights = function(highlights, palette)
highlights.Comment['fg'] = "#8a9097"
highlights.LineNr['fg'] = "#8088A8"
highlights.Visual['bg'] = palette.bg4
return highlights
end,
gamma = 0.92, -- brightness
styles = {
comments = { italic = true },
keywords = { italic = false },
identifiers = { italic = false },
functions = {},
variables = {},
},
},
},
{