From 3b72a10235a2cc68560ea55610ebeea33b79ac08 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Wed, 18 Aug 2021 12:11:04 -0500 Subject: [PATCH] dev: made conditionals red --- lua/catppuccino/core/mapper.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/catppuccino/core/mapper.lua b/lua/catppuccino/core/mapper.lua index 3f3c4fb..805d915 100644 --- a/lua/catppuccino/core/mapper.lua +++ b/lua/catppuccino/core/mapper.lua @@ -83,7 +83,7 @@ function M.apply() Identifier = {fg = t.cyan, style = opts.styles.variables}, -- (preferred) any variable name Function = {fg = t.blue, style = opts.styles.fuctions}, -- function name (also: methods for classes) Statement = {fg = t.magenta_br}, -- (preferred) any statement - Conditional = {fg = t.magenta_br}, -- if, then, else, endif, switch, ett. + Conditional = {fg = t.red}, -- if, then, else, endif, switch, ett. Repeat = {fg = t.magenta_br}, -- for, do, while, ett. Label = {fg = t.magenta_br}, -- case, default, ett. Operator = {fg = t.fg_alt}, -- "sizeof", "+", "*", ett.