From: Frede Braendstrup Date: Mon, 12 Dec 2022 12:12:37 +0000 (+0100) Subject: Added @type.qualifier highlight X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=19945e23a54681043d4263e20aec5ef9405bb828;p=nvim-plugins%2Fflatwhite.git Added @type.qualifier highlight Makes qualifiers like c++ `virtual` pink like they used to be --- diff --git a/lua/dracula/groups.lua b/lua/dracula/groups.lua index 7251971..f4c49a2 100644 --- a/lua/dracula/groups.lua +++ b/lua/dracula/groups.lua @@ -167,6 +167,7 @@ local function setup(configs) ['@exception'] = { fg = colors.purple, }, ['@type'] = { fg = colors.bright_cyan, }, ['@type.builtin'] = { fg = colors.cyan, italic = true, }, + ['@type.qualifier'] = { fg = colors.pink, }, ['@structure'] = { fg = colors.purple, }, ['@include'] = { fg = colors.pink, },