From d9247da971d5302efbd3898e1079f1ba6eed342c Mon Sep 17 00:00:00 2001 From: Casey Webster Date: Tue, 2 Nov 2021 17:15:59 -0500 Subject: [PATCH] Respect transparency by providing a value for none With the refactor removing values from the color mapper table, the missing value on cp.none prevents transparency from being respected. This adds a value for that in a core.mapper close to where it is used and does not pollute th color mapping table. --- lua/katppuccino/core/mapper.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/katppuccino/core/mapper.lua b/lua/katppuccino/core/mapper.lua index ad9f08f..26aa069 100644 --- a/lua/katppuccino/core/mapper.lua +++ b/lua/katppuccino/core/mapper.lua @@ -18,6 +18,7 @@ end local function get_base() local cp = color_palette + cp.none = "NONE" return { Comment = { fg = cp.katppuccino11, style = cnf.styles.comments }, -- just comments