From 741ad29e8787fed09d705fa85d7f5abcf9fadf93 Mon Sep 17 00:00:00 2001 From: Yamin Shihab Date: Wed, 3 Jan 2024 17:54:02 -0700 Subject: [PATCH 1/2] (mini.base16) Update spell checking highlight group foregrounds to use underline color. --- lua/mini/base16.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/mini/base16.lua b/lua/mini/base16.lua index d1d00ccd..3e268c12 100644 --- a/lua/mini/base16.lua +++ b/lua/mini/base16.lua @@ -504,10 +504,10 @@ H.apply_palette = function(palette, use_cterm) hi('Search', {fg=p.base01, bg=p.base0A, attr=nil, sp=nil}) hi('SignColumn', {fg=p.base03, bg=p.base01, attr=nil, sp=nil}) hi('SpecialKey', {fg=p.base03, bg=nil, attr=nil, sp=nil}) - hi('SpellBad', {fg=nil, bg=nil, attr='undercurl', sp=p.base08}) - hi('SpellCap', {fg=nil, bg=nil, attr='undercurl', sp=p.base0D}) - hi('SpellLocal', {fg=nil, bg=nil, attr='undercurl', sp=p.base0C}) - hi('SpellRare', {fg=nil, bg=nil, attr='undercurl', sp=p.base0E}) + hi('SpellBad', {fg=p.base08, bg=nil, attr='undercurl', sp=p.base08}) + hi('SpellCap', {fg=p.base0D, bg=nil, attr='undercurl', sp=p.base0D}) + hi('SpellLocal', {fg=p.base0C, bg=nil, attr='undercurl', sp=p.base0C}) + hi('SpellRare', {fg=p.base0E, bg=nil, attr='undercurl', sp=p.base0E}) hi('StatusLine', {fg=p.base04, bg=p.base02, attr=nil, sp=nil}) hi('StatusLineNC', {fg=p.base03, bg=p.base01, attr=nil, sp=nil}) hi('Substitute', {fg=p.base01, bg=p.base0A, attr=nil, sp=nil}) From 4dfc13fab50b8de1543c12c3e3020d36515fa812 Mon Sep 17 00:00:00 2001 From: Yamin Shihab Date: Wed, 3 Jan 2024 18:01:40 -0700 Subject: [PATCH 2/2] (mini.hues) Update spell checking highlight group foregrounds to use underline color. --- lua/mini/hues.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/mini/hues.lua b/lua/mini/hues.lua index d6724513..035a2734 100644 --- a/lua/mini/hues.lua +++ b/lua/mini/hues.lua @@ -698,10 +698,10 @@ H.apply_colorscheme = function(config) hi('Search', { fg=p.bg, bg=p.accent }) hi('SignColumn', { fg=p.bg_mid2, bg=nil }) hi('SpecialKey', { fg=p.bg_mid2, bg=nil }) - hi('SpellBad', { fg=nil, bg=nil, sp=p.red, undercurl=true }) - hi('SpellCap', { fg=nil, bg=nil, sp=p.cyan, undercurl=true }) - hi('SpellLocal', { fg=nil, bg=nil, sp=p.yellow, undercurl=true }) - hi('SpellRare', { fg=nil, bg=nil, sp=p.blue, undercurl=true }) + hi('SpellBad', { fg=p.red, bg=nil, sp=p.red, undercurl=true }) + hi('SpellCap', { fg=p.cyan, bg=nil, sp=p.cyan, undercurl=true }) + hi('SpellLocal', { fg=p.yellow, bg=nil, sp=p.yellow, undercurl=true }) + hi('SpellRare', { fg=p.blue, bg=nil, sp=p.blue, undercurl=true }) hi('StatusLine', { fg=p.fg_mid, bg=p.accent_bg }) hi('StatusLineNC', { fg=p.fg_mid, bg=p.bg_edge }) hi('Substitute', { fg=p.bg, bg=p.blue })