From 90e68b09f361ab4eb024638085f4bf5ed3ff59ea Mon Sep 17 00:00:00 2001 From: fiplox Date: Sun, 9 Apr 2023 23:44:32 +0200 Subject: [PATCH] feat: change some groups, add some links --- lua/neogruber/groups.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lua/neogruber/groups.lua b/lua/neogruber/groups.lua index ad75ce1..9619bcb 100644 --- a/lua/neogruber/groups.lua +++ b/lua/neogruber/groups.lua @@ -12,7 +12,7 @@ M.setup = function() -- struct, union, enum, etc. Structure = { fg = c.yellow }, -- any constant - Constant = { fg = c.wisteria1 }, + Constant = { fg = c.quartz }, -- any character constant: 'c', '\n' Character = { fg = c.green }, -- a number constant: 5 @@ -276,7 +276,7 @@ M.setup = function() ['@method'] = { link = 'Function' }, ['@method.call'] = { link = 'Function' }, ['@keyword'] = { link = 'Keyword' }, - ['@keyword.function'] = { link = 'Keyword' }, + ['@keyword.function'] = { link = 'Function' }, ['@keyword.operator'] = { fg = c.yellow }, ['@keyword.return'] = { fg = c.yellow }, ['@keyword.coroutine'] = { fg = c.yellow }, @@ -289,7 +289,7 @@ M.setup = function() ['@type.definition'] = { link = 'Typedef' }, ['@storageclass'] = { link = 'StorageClass' }, ['@variable.builtin'] = { fg = c.wisteria }, - ['@variable'] = { fg = c.niagara1 }, + ['@variable'] = { fg = c.bg6 }, ['@text.title'] = { link = 'Title' }, ['@text.uri'] = { link = 'Underlined' }, ['@text.todo'] = { link = 'Todo' }, @@ -308,9 +308,9 @@ M.setup = function() ['@attribute'] = { fg = c.wisteria1 }, ['@boolean'] = { fg = c.quartz }, ['@character'] = { fg = c.green }, - ['@constant'] = { fg = c.wisteria1 }, + ['@constant'] = { fg = c.quartz }, ['@constant.builtin'] = { fg = c.wisteria1 }, - ['@constant.macro'] = { fg = c.wisteria1 }, + ['@constant.macro'] = { link = 'Macro' }, ['@constructor'] = { fg = c.yellow }, ['@error'] = { fg = c.red }, ['@exception'] = { fg = c.yellow }, @@ -321,12 +321,12 @@ M.setup = function() ['@function.macro'] = { fg = c.yellow }, ['@include'] = { fg = c.quartz }, ['@label'] = { fg = c.yellow }, - ['@namespace'] = { fg = c.niagara }, + ['@namespace'] = { link = 'Structure' }, ['@number'] = { fg = c.brown }, ['@operator'] = { fg = c.niagara_1 }, - ['@parameter'] = { fg = c.wisteria }, -- TODO: see what it does + ['@parameter'] = { link = 'Identifier' }, -- TODO: see what it does ['@parameter.reference'] = { fg = c.wisteria }, - ['@property'] = { fg = c.wisteria_1 }, + ['@property'] = { link = 'Identifier' }, ['@punctuation.delimiter'] = { fg = c.niagara }, ['@punctuation.bracket'] = { fg = c.niagara_1 }, ['@punctuation.special'] = { fg = c.niagara },