From 512c297fd32fbb92fb257520624a144b4ef9f2ef Mon Sep 17 00:00:00 2001 From: Mandy Noto Date: Fri, 10 Mar 2023 13:15:05 -0800 Subject: [PATCH] feat(theme): make text.strong always bold --- lua/rose-pine/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index ba30e8f..7260eb1 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -285,7 +285,7 @@ function M.get(config) ['@tag.attribute'] = { link = '@property' }, ['@tag.delimiter'] = { fg = p.subtle }, ['@text'] = { fg = p.text }, - ['@text.strong'] = { bold = true }, + ['@text.strong'] = { style = 'bold', bold = true }, ['@text.emphasis'] = { italic = true }, ['@text.underline'] = { underline = true }, ['@text.strike'] = { strikethrough = true },