From eba945eab7608d0081374c3e2b356c4bea66e129 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 4 Apr 2026 14:34:41 +0200 Subject: [PATCH] nvim/lua/user/plugins/ui/colorscheme.lua: update macro highlight --- nvim/lua/user/plugins/ui/colorscheme.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/lua/user/plugins/ui/colorscheme.lua b/nvim/lua/user/plugins/ui/colorscheme.lua index 04e9eae..fe3cf89 100644 --- a/nvim/lua/user/plugins/ui/colorscheme.lua +++ b/nvim/lua/user/plugins/ui/colorscheme.lua @@ -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" },