From: R Gibim <9031589+Drowze@users.noreply.github.com> Date: Wed, 21 Dec 2022 22:02:04 +0000 (+0000) Subject: Change `@property` highlighting (fix #66) X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=d0118d6ab989131e9dd2062fd64c12ba788613de;p=nvim-plugins%2Fflatwhite.git Change `@property` highlighting (fix #66) --- diff --git a/lua/dracula/groups.lua b/lua/dracula/groups.lua index 0f53307..5128019 100644 --- a/lua/dracula/groups.lua +++ b/lua/dracula/groups.lua @@ -133,7 +133,7 @@ local function setup(configs) ['@constant'] = { fg = colors.purple, }, ['@constant.builtin'] = { fg = colors.purple, }, - ['@symbol'] = { fg = colors.purple }, + ['@symbol'] = { fg = colors.purple, }, ['@constant.macro'] = { fg = colors.cyan, }, ['@string.regex'] = { fg = colors.red, }, @@ -154,7 +154,7 @@ local function setup(configs) ['@parameter.reference'] = { fg = colors.orange, }, ['@method'] = { fg = colors.green, }, ['@field'] = { fg = colors.orange, }, - ['@property'] = { fg = colors.fg, }, + ['@property'] = { fg = colors.purple, }, ['@constructor'] = { fg = colors.cyan, }, ['@conditional'] = { fg = colors.pink, },