From f01ce3a71748a92997d266cfe2c985decd18c601 Mon Sep 17 00:00:00 2001 From: not Date: Sun, 11 Feb 2024 20:11:47 -0600 Subject: [PATCH] feat: prioritise semantic variable highlighting (#240) --- lua/rose-pine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/rose-pine.lua b/lua/rose-pine.lua index 2085b4d..40ba83e 100644 --- a/lua/rose-pine.lua +++ b/lua/rose-pine.lua @@ -412,7 +412,7 @@ local function set_highlights() ["@lsp.type.namespace"] = { link = "@namespace" }, ["@lsp.type.parameter"] = { link = "@parameter" }, ["@lsp.type.property"] = { link = "@property" }, - ["@lsp.type.variable"] = {}, -- use treesitter styles for regular variables + ["@lsp.type.variable"] = { link = "@variable" }, ["@lsp.typemod.function.defaultLibrary"] = { link = "@function.builtin" }, ["@lsp.typemod.operator.injected"] = { link = "@operator" }, ["@lsp.typemod.string.injected"] = { link = "@string" },