Skip to content

Commit 7bbafa4

Browse files
committed
feat(base16): add new Nightly highlight groups
1 parent 8c40eb7 commit 7bbafa4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lua/mini/base16.lua

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,7 @@ H.apply_palette = function(palette, use_cterm)
488488
hi('DiffChange', {fg=p.base0E, bg=p.base01, attr=nil, sp=nil})
489489
hi('DiffDelete', {fg=p.base08, bg=p.base01, attr=nil, sp=nil})
490490
hi('DiffText', {fg=p.base0D, bg=p.base01, attr=nil, sp=nil})
491+
hi('DiffTextAdd', {link='DiffAdd'})
491492
hi('Directory', {fg=p.base0D, bg=nil, attr=nil, sp=nil})
492493
hi('EndOfBuffer', {fg=p.base03, bg=nil, attr=nil, sp=nil})
493494
hi('ErrorMsg', {fg=p.base08, bg=p.base00, attr=nil, sp=nil})
@@ -509,6 +510,7 @@ H.apply_palette = function(palette, use_cterm)
509510
hi('Normal', {fg=p.base05, bg=p.base00, attr=nil, sp=nil})
510511
hi('NormalFloat', {fg=p.base05, bg=p.base01, attr=nil, sp=nil})
511512
hi('NormalNC', {fg=p.base05, bg=p.base00, attr=nil, sp=nil})
513+
hi('OkMsg', {fg=p.base0B, bg=nil, attr=nil, sp=nil})
512514
hi('Pmenu', {fg=p.base05, bg=p.base01, attr=nil, sp=nil})
513515
hi('PmenuExtra', {fg=p.base05, bg=p.base01, attr=nil, sp=nil})
514516
hi('PmenuExtraSel', {fg=p.base05, bg=p.base01, attr='reverse', sp=nil})
@@ -530,6 +532,8 @@ H.apply_palette = function(palette, use_cterm)
530532
hi('SpellRare', {fg=nil, bg=nil, attr='undercurl', sp=p.base0E})
531533
hi('StatusLine', {fg=p.base04, bg=p.base02, attr=nil, sp=nil})
532534
hi('StatusLineNC', {fg=p.base03, bg=p.base01, attr=nil, sp=nil})
535+
hi('StderrMsg', {link='ErrorMsg'})
536+
hi('StdoutMsg', {link='MsgArea'})
533537
hi('Substitute', {fg=p.base01, bg=p.base0A, attr=nil, sp=nil})
534538
hi('TabLine', {fg=p.base03, bg=p.base01, attr=nil, sp=nil})
535539
hi('TabLineFill', {fg=p.base03, bg=p.base01, attr=nil, sp=nil})
@@ -652,7 +656,8 @@ H.apply_palette = function(palette, use_cterm)
652656
hi('LspCodeLensSeparator', {link='Comment'})
653657

654658
-- Built-in snippets
655-
hi('SnippetTabstop', {link='Visual'})
659+
hi('SnippetTabstop', {link='Visual'})
660+
hi('SnippetTabstopActive', {link='SnippetTabstop'})
656661

657662
-- Built-in markdown syntax
658663
hi('markdownH1', {fg=p.base09, bg=nil, attr=nil, sp=nil})

0 commit comments

Comments
 (0)