From 59479772e3bf806e31c16b1c0101daceaca00a12 Mon Sep 17 00:00:00 2001 From: Fitrah Muhammad Date: Wed, 19 Apr 2023 00:08:54 +0800 Subject: [PATCH] fix: reset `@lsp.type.comment` Linking `@lsp.type.comment` to `Comment` or `@comment` makes TODO comments look like normal comments. --- lua/rose-pine/theme.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index 0d96113..4f7af42 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -264,6 +264,7 @@ function M._load(options) h('@namespace', { link = '@include' }) -- LSP Semantic Token Groups + h('@lsp.type.comment', {}) h('@lsp.type.enum', { link = '@type' }) h('@lsp.type.keyword', { link = '@keyword' }) h('@lsp.type.interface', { link = '@interface' })