From 639cb859c8fe5073d060b7208abd24ef2d14f185 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Tue, 2 Jan 2024 01:11:33 +0100 Subject: [PATCH] Fix comment color --- lua/darkplus/theme.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/darkplus/theme.lua b/lua/darkplus/theme.lua index 9c3ba32..aa117c0 100644 --- a/lua/darkplus/theme.lua +++ b/lua/darkplus/theme.lua @@ -60,7 +60,7 @@ theme.set_highlights = function() hl(0, "TabLineFill", { fg = c.alt_fg, bg = c.alt_bg }) hl(0, "WinSeparator", { fg = c.light_gray, bg = 'NONE' }) - hl(0, "Comment", { fg = c.light_gray, bg = 'NONE', italic = true, }) + hl(0, "Comment", { fg = c.green_1, bg = 'NONE' }) hl(0, "Variable", { fg = c.blue_2, bg = 'NONE' }) hl(0, "String", { fg = c.orange, bg = 'NONE' }) hl(0, "Character", { fg = c.orange, bg = 'NONE' }) @@ -123,7 +123,7 @@ theme.set_highlights = function() -- Treesitter - hl(0, "@comment", { fg = c.green_1, bg = 'NONE', italic = true, }) + hl(0, "@comment", { link = 'Comment' }) hl(0, "@none", { fg = 'NONE', bg = 'NONE' }) hl(0, "@preproc", { link = 'PreProc' }) hl(0, "@define", { link = 'Define' })