From eee827ac4e11f488a8f0728838d0d31008e408ec Mon Sep 17 00:00:00 2001 From: mvllow Date: Mon, 7 Feb 2022 11:26:02 -0600 Subject: [PATCH] fix reverse italic logic --- 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 8ba2ba8..94298e3 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -8,7 +8,7 @@ function M.get(config) local theme = {} local groups = config.groups or {} local styles = { - italic = (config.disable_italics and 'italic') or 'NONE', + italic = (config.disable_italics and 'NONE') or 'italic', vert_split = (config.bold_vert_split and p.surface) or p.none, background = (config.disable_background and p.none) or p.base, float_background = (config.disable_float_background and p.none) or p.surface,