1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00

nvim/lua/user/plugins/ui/colorscheme.lua: update macro highlight

This commit is contained in:
Henrik Hautakoski 2026-04-04 14:34:41 +02:00
parent c06bbdc328
commit eba945eab7

View file

@ -186,6 +186,7 @@ local custom_highlights = function(colors)
Label = { link = "String" },
String = { fg = colors.lavender },
Exception = { link = "Keyword" },
Macro = { fg = colors.pink },
-- Treesitter tokens
["@constructor"] = { link = "Function" },
@ -204,6 +205,7 @@ local custom_highlights = function(colors)
["@module"] = { link = "@text" },
["@namespace"] = { link = "@keyword" },
["@punctuation.bracket"] = { link = "@punctuation" },
["@function.macro"] = { link = "Macro" },
-- Comments
["@punctuation.delimiter.comment"] = { link = "@Comment" },