From 065ebfa890c1a31bffcd8e8a4d6f9210f8dfc03b Mon Sep 17 00:00:00 2001 From: Matt Leong Date: Mon, 1 Nov 2021 14:19:44 -0700 Subject: [PATCH] feat(plugins): cleaner todo highlights --- lua/cosmic/pluginsInit.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lua/cosmic/pluginsInit.lua b/lua/cosmic/pluginsInit.lua index 93af390..abe917f 100644 --- a/lua/cosmic/pluginsInit.lua +++ b/lua/cosmic/pluginsInit.lua @@ -232,11 +232,11 @@ return packer.startup(function() alt = { 'FIXME', 'BUG', 'FIXIT', 'ISSUE', 'fix', 'fixme', 'bug' }, -- a set of other keywords that all map to this FIX keywords -- signs = false, -- configure signs for some keywords individually }, - TODO = { icon = icons.check, color = 'info', alt = { 'todo' } }, - HACK = { icon = icons.flame, color = 'warning', alt = { 'hack' } }, - WARN = { icon = icons.warn, color = 'warning', alt = { 'WARNING', 'XXX', 'warn', 'warning' } }, - PERF = { icon = icons.perf, alt = { 'OPTIM', 'PERFORMANCE', 'OPTIMIZE', 'perf', 'performance' } }, - NOTE = { icon = icons.note, color = 'hint', alt = { 'INFO', 'note' } }, + TODO = { icon = icons.check, color = 'info' }, + HACK = { icon = icons.flame, color = 'warning' }, + WARN = { icon = icons.warn, color = 'warning', alt = { 'WARNING', 'XXX' } }, + PERF = { icon = icons.perf, alt = { 'OPTIM', 'PERFORMANCE', 'OPTIMIZE' } }, + NOTE = { icon = icons.note, color = 'hint', alt = { 'INFO' } }, }, colors = { error = { 'DiagnosticError', 'ErrorMsg', '#DC2626' },