Skip to content

Commit

Permalink
refactor(hues): fix inconsistent formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
echasnovski committed Oct 3, 2024
1 parent 848c5e8 commit 61e5d46
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lua/mini/hues.lua
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ MiniHues.apply_palette = function(palette, plugins)
hi('EndOfBuffer', { fg=p.bg_mid2, bg=nil })
hi('ErrorMsg', { fg=p.red, bg=nil })
hi('FloatBorder', { fg=p.accent, bg=p.bg_edge })
hi('FloatTitle', { fg=p.accent, bg=p.bg_edge, bold = true })
hi('FloatTitle', { fg=p.accent, bg=p.bg_edge, bold=true })
hi('FoldColumn', { fg=p.bg_mid2, bg=nil })
hi('Folded', { fg=p.fg_mid2, bg=p.bg_edge })
hi('IncSearch', { fg=p.bg, bg=p.yellow })
Expand Down Expand Up @@ -699,7 +699,7 @@ MiniHues.apply_palette = function(palette, plugins)
hi('@tag', { link='Tag' })

hi('@symbol', { link='Keyword' })
hi('@none', { link='Normal'})
hi('@none', { link='Normal' })

-- Semantic tokens
if vim.fn.has('nvim-0.9') == 1 then
Expand Down Expand Up @@ -887,10 +887,10 @@ MiniHues.apply_palette = function(palette, plugins)
hi('MiniFilesTitle', { link='FloatTitle' })
hi('MiniFilesTitleFocused', { fg=p.fg, bg=p.bg_edge, bold=true })

hi('MiniHipatternsFixme', { fg=p.bg, bg=p.red, bold=true})
hi('MiniHipatternsHack', { fg=p.bg, bg=p.yellow, bold=true})
hi('MiniHipatternsNote', { fg=p.bg, bg=p.cyan, bold=true})
hi('MiniHipatternsTodo', { fg=p.bg, bg=p.blue, bold=true})
hi('MiniHipatternsFixme', { fg=p.bg, bg=p.red, bold=true })
hi('MiniHipatternsHack', { fg=p.bg, bg=p.yellow, bold=true })
hi('MiniHipatternsNote', { fg=p.bg, bg=p.cyan, bold=true })
hi('MiniHipatternsTodo', { fg=p.bg, bg=p.blue, bold=true })

hi('MiniIconsAzure', { fg=p.azure, bg=nil })
hi('MiniIconsBlue', { fg=p.blue, bg=nil })
Expand Down Expand Up @@ -1213,8 +1213,8 @@ MiniHues.apply_palette = function(palette, plugins)
hi('NeogitDiffDeleteHighlight', { link='DiffDelete' })
hi('NeogitDiffDelete', { link='DiffDelete' })
hi('NeogitFold', { link='FoldColumn' })
hi('NeogitHunkHeader', { fg=p.accent, bg=nil})
hi('NeogitHunkHeaderHighlight', { fg=p.accent, bg=nil, bold = true})
hi('NeogitHunkHeader', { fg=p.accent, bg=nil })
hi('NeogitHunkHeaderHighlight', { fg=p.accent, bg=nil, bold=true })
hi('NeogitNotificationError', { link='DiagnosticError' })
hi('NeogitNotificationInfo', { link='DiagnosticInfo' })
hi('NeogitNotificationWarning', { link='DiagnosticWarn' })
Expand Down

0 comments on commit 61e5d46

Please sign in to comment.