From b3ede45ca40c41318dc9bf0e23dbdefbf985f718 Mon Sep 17 00:00:00 2001 From: SafetyMary <72537260+SafetyMary@users.noreply.github.com> Date: Tue, 5 May 2026 14:59:11 +0800 Subject: [PATCH] feat(font color): Remove all diff font color, maintain original syntax highlighting --- lua/solarized-osaka/groups/editor.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/solarized-osaka/groups/editor.lua b/lua/solarized-osaka/groups/editor.lua index e7e1d1d..6354034 100644 --- a/lua/solarized-osaka/groups/editor.lua +++ b/lua/solarized-osaka/groups/editor.lua @@ -11,10 +11,10 @@ function M.get(c, options) CursorColumn = { bg = c.base02 }, -- Screen-column at the cursor, when 'cursorcolumn' is set. CursorLine = { bg = c.base03 }, -- Screen-line at the cursor, when 'cursorline' is set. Low-priority if foreground (ctermfg OR guifg) is not set. Directory = { fg = c.blue500 }, -- directory names (and other special names in listings) - DiffAdd = { fg = c.green500, bg = c.base04, bold = true }, -- diff mode: Added line |diff.txt| - DiffChange = { fg = c.yellow500, bg = c.base04, bold = true }, -- diff mode: Changed line |diff.txt| - DiffDelete = { fg = c.red500, bg = c.base04, bold = true }, -- diff mode: Deleted line |diff.txt| - DiffText = { fg = c.blue500, bg = c.base02, bold = true }, -- diff mode: Changed text within a changed line |diff.txt| + DiffAdd = { bg = c.base04, bold = true }, -- diff mode: Added line |diff.txt| + DiffChange = { bg = c.base04, bold = true }, -- diff mode: Changed line |diff.txt| + DiffDelete = { bg = c.base04, bold = true }, -- diff mode: Deleted line |diff.txt| + DiffText = { bg = c.base02, bold = true }, -- diff mode: Changed text within a changed line |diff.txt| EndOfBuffer = { fg = c.base01 }, -- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|. -- TermCursor = { }, -- cursor in a focused terminal -- TermCursorNC= { }, -- cursor in an unfocused terminal